如何在“DataGridView”中从单个单元格捕获数据
本文关键字:单元格 单个 数据 DataGridView | 更新日期: 2023-09-27 18:30:10
我正试图从DataGridView
中的ID
字段中获取值。我将标记为Contact_ID的Column
设置为visible = false
,工作正常,我可以从列中获取数据。
今天我收到一条错误消息Unhandled acceptation of type
和一条消息Column named Contact_ID cannot be found
我把Contact_ID visible = true
和列的宽度设为2,这样你就看不到了
这是我正在使用的两行代码。row
索引被捕获得很好。
DataGridViewRow row = customer_ContactsDataGridView.CurrentCell.OwningRow;
string contact_ID = row.Cells["Contact_ID"].Value.ToString();
如有任何帮助,我们将不胜感激。
在Alex Bell的帮助下,以下是我最终得到的代码行。
DataGridViewRow row = customer_ContactsDataGridView.CurrentCell.OwningRow;
string contact_ID = row.Cells[0].Value.ToString();
使用DataGridView
中的数字cell
位置更容易获取数据