我在dataGrid视图中有两列:
Price
Amount
和第三栏
total
当Price
和Amount
的值自动更改total
字段更改的值时,我该怎么做?
答案 0 :(得分:2)
在Win app grid中使用这种方式:
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
if(e.ColumnIndex == 0 || e.ColumnIndex == 1)
this.dataGridView1.Rows[e.RowIndex].Cells[2].Value = System.Convert.ToInt32(this.dataGridView1.Rows[e.RowIndex].Cells[0].Value) * System.Convert.ToInt32(this.dataGridView1.Rows[e.RowIndex].Cells[1].Value);
}