DataGridView
Windows フォームのすべてのセルの値を変更するにはどうすればよいですか? セルに直接入力するように、Windows フォームで直接変更したい
次のようなテーブルがあります。
AA BB CC
--------------
1 aa ac
2 bb fd// I type here and change the value to kk
コード:
DataGridViewTextBoxColumn AA= new DataGridViewTextBoxColumn();
MsgIDHex.HeaderText = "AA";
MsgIDHex.DataPropertyName = "AA";
DataGridViewTextBoxColumn BB= new DataGridViewTextBoxColumn();
MsgIDHex.HeaderText = "BB";
MsgIDHex.DataPropertyName = "BB";
DataGridViewTextBoxColumn CC= new DataGridViewTextBoxColumn();
MsgIDHex.HeaderText = "CC";
MsgIDHex.DataPropertyName = "CC;
dataGridView1.DataSource = result;
dataGridView1.Columns.AddRange(AA, BB, CC};
で何かをする必要がありDataGridViewTextBoxEditingControl
ますか?