我在网上搜索了答案,但没有找到。这是 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] 的现有内容。
谢谢你的帮助。瑞安