Datagridview行单元格值
本文关键字:单元格 Datagridview | 更新日期: 2023-09-27 18:03:19
我在网上搜索答案,但没有找到。这是c# winforms。可以这样做:
private void datagridItems_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
int ID;
DataGridViewRow row = this.datagridItems.Rows[e.RowIndex];
DataGridViewCell cell = row.Cells[e.ColumnIndex];
if (row.Cells[2].Value == some value)
{
//set the value of a cell
row.Cells[4].Value = new value;
}
}
我需要根据单元格[2]中的一些其他标准清除单元格[4]的现有内容。
谢谢你的帮助。瑞安
如果DataGridView是绑定的,你不应该直接修改单元格的内容。相反,您应该修改数据绑定对象。您可以通过DataGridViewRow的DataBoundItem访问该对象:
MyObject obj = (MyObject)dataGridView.CurrentRow.DataBoundItem;
obj.MyProperty = newValue;
如果您绑定的对象不支持INotifyPropertyChanged事件,则随后刷新网格