标签: c# winforms
我在c#windows窗体应用程序中有一个DataGridView。其中一列返回(long)值。
现在我想改变它的价值,但我不知道该怎么做。
答案 0 :(得分:0)
如果你做绑定(C# Tutorial - Binding a DataGridView to a Collection) - 它会自动更改。
答案 1 :(得分:0)
使用以下内容:
dataGridView.Rows[i].Cells[j].Value = value;