gpt4 book ai didi

c# - 直接更改 DataGridView 中的值

转载 作者:行者123 更新时间:2023-12-01 16:01:58 24 4
gpt4 key购买 nike

如何更改 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 做些什么吗?

最佳答案

您可以简单地执行此操作(假设您想以编程方式更改一个值):

dataGridView1.Rows[RowNumber].Cells[CC.Index].Value = newValue;

并且已经解释了如何启用对特定单元格的编辑here .

关于c# - 直接更改 DataGridView 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12781406/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com