C# 中的 DataGridView

发布于 2024-11-04 00:52:18 字数 210 浏览 5 评论 0原文

我正在使用 DataGridView 在我的应用程序中显示一些数据。
表中的数据根据​​用户输入动态更改。
我能够根据用户检索数据。

我必须添加一个名为 ID 的额外列,并按顺序填写从 1 到动态生成的行数的值。

我已经使用 dgrid.columns.add("UID"); 添加了列,

但是如何在运行时插入值呢?

I am using a DataGridView to display some data in my application.
The data in the table gets changed dynamically according to the users input.
I am able to retrieve the data according to the user.

I have to add an extra column named ID and fill in the values serially starting from 1 to the number of rows which are generated dynamically.

I had added the column using dgrid.columns.add("UID");

But how to insert values at runtime?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱娆 2024-11-11 00:52:18

看到你的代码,这样做是不正确的:

dgrid.Columns.Add("UID");

你必须这样做:

dgrid.Columns.Add("uidColumn", "UID");

要修改/添加现有单元格的值,如果该行已经存在,你可以这样做:

dgrid.Rows[0].Cells["uidColumn"].Value = myValue;

这将修改名称为 uidColumn 和行 0。根据您的问题,您所要做的就是:

for (int i = 0; i < dgrid.Rows.Count; i++) {
    dgrid.Rows[i].Cells["uidColumn"].Value = GetValueOfRow(i);
}

假设您有一个方法 GetValueOfRow ,该方法接收行索引并返回该中 ID 列中所需的值排。

Seeing your code, it is not correct to do:

dgrid.Columns.Add("UID");

You will have to do:

dgrid.Columns.Add("uidColumn", "UID");

To modify/add the value of an existing cell, if the row already exists, you can do:

dgrid.Rows[0].Cells["uidColumn"].Value = myValue;

That will modify the value of the column with name uidColumn and row 0. According to your problem, all you have to do is:

for (int i = 0; i < dgrid.Rows.Count; i++) {
    dgrid.Rows[i].Cells["uidColumn"].Value = GetValueOfRow(i);
}

supposing that you have a method GetValueOfRow that receives a row index and returns the value you need in the ID column in that row.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文