我有3列数量,价格和金额,我需要使用DataGridView计算每行的金额,我可能会使用哪些可能的事件?
答案 0 :(得分:1)
我认为数量为Cell 0
,价格为Cell 1
,金额为Cell 2
For i As Integer = 0 To DataGridView1.RowCount - 1
Dim xQty as Double = CDBL(DataGridView1.Rows(i).Cells(0).Value)
Dim xPrc as Double = CDBL(DataGridView1.Rows(i).Cells(1).Value)
DataGridView1.Rows(i).Cells(2).Value = xQty * xPrc
Next