PrivateSub Button_Click_1(sender AsObject, e As RoutedEventArgs)
Dim lastRow = C1FlexGrid.Rows.LastOrDefault()
If lastRow IsNotNothingThen'選択した行を削除します。C1FlexGridのRowsプロパティはRowCollection型です。
C1FlexGrid.Rows.RemoveAt(C1FlexGrid.Selection.Row)
EndIfEnd Sub
コードのコピー
privatevoid Button_Click_1(object sender, RoutedEventArgs e)
{
var lastRow = C1FlexGrid.Rows.LastOrDefault();
if (lastRow != null)
{
//選択した行を削除します。C1FlexGridのRowsプロパティはRowCollection型です。
C1FlexGrid.Rows.RemoveAt(C1FlexGrid.Selection.Row);
}
}