0

我在 ac# windows 窗体应用程序中有一个 DataGridView。此列返回(长)值。

现在我想改变它的价值,但我不知道该怎么做。

4

2 回答 2

0

如果您进行绑定(C# 教程 - 将 DataGridView 绑定到集合) - 它会自动更改。

于 2013-01-13T08:36:25.313 回答
0

使用以下内容:

dataGridView.Rows[i].Cells[j].Value = value;
于 2013-01-13T08:39:35.803 回答