1

チェックボックスの選択時に行の値を取得する関数を作成する方法。以下のコードを使用してチェックボックス列を動的に作成しています

DataGridViewCheckBoxColumn checkColumn = new DataGridViewCheckBoxColumn();
checkColumn.Name = "X";
checkColumn.HeaderText = "Select";
checkColumn.Width = 50;
checkColumn.ReadOnly = false;
checkColumn.FillWeight = 10; //if the datagridview is resized (on form resize) the checkbox won't take up too much; value is relative to the other columns' fill values
dataGridView5.Columns.Add(checkColumn);

check column選択した行の値を取得する関数の書き方。

4

0 に答える 0