Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ac# windows 窗体应用程序中有一个 DataGridView。此列返回(长)值。
现在我想改变它的价值,但我不知道该怎么做。
如果您进行绑定(C# 教程 - 将 DataGridView 绑定到集合) - 它会自动更改。
使用以下内容:
dataGridView.Rows[i].Cells[j].Value = value;