如何获取数据网格的可编辑列的值以及哪个事件
本文关键字:编辑 事件 获取 数据 网格 数据网 何获取 | 更新日期: 2023-09-27 18:36:24
我在C#.net中有一个数据网格,我已经使网格中的一些列可编辑。我应该在哪个事件上获取用户在网格中输入的值以及如何获取用户输入的值?
事件:CellEndEdit
值:(your datagridview).Rows[e.RowIndex].Cells[e.ColumnIndex].Value
(注意:这是对象类型。您可以使用ToString()方法将其转换为字符串)
如果你的网格被命名为 dataGridView1,那么下面的代码就是你需要的:
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0) // Ignore clicks on the header row that changes sorting
{
// do what you need here
}
}