我正在尝试从ID
中的DataGridView
字段获取值。我将Column
标记的Contact_ID设置为visible = false
并且工作正常,我可以从列中获取数据。
今天收到错误消息Unhandled acceptation of type
和消息Column named Contact_ID cannot be found
我已将Contact_ID visible = true
和列宽= 2,因此您无法真正看到它
以下是我使用的2行代码。正好捕获row
索引。
DataGridViewRow row = customer_ContactsDataGridView.CurrentCell.OwningRow;
string contact_ID = row.Cells["Contact_ID"].Value.ToString();
感谢任何帮助。
答案 0 :(得分:0)
在Alex Bell的帮助下,以下是我最终得到的代码行。
DataGridViewRow row = customer_ContactsDataGridView.CurrentCell.OwningRow;
string contact_ID = row.Cells[0].Value.ToString();
使用cell
DataGridView
位置更容易获取数据