通过选择datagridview组合框项,生成txtboxcolumn值.how?在vb.net中

时间:2013-02-21 21:13:33

标签: vb.net datagrid

enter image description here

嗨,我想在网格视图上执行以下操作,如图所示。 通过从项目组合框中选择项目,将在单价txt字段中生成Unitprice。由Product表绑定的项目组合框的数据。 Item组合框的value成员是Product字段的Unitprice。 PLZ帮助我。提前完成。

1 个答案:

答案 0 :(得分:0)

您想要处理CellValueChanged的{​​{1}}事件。

DataGridView

另请参阅Private Sub CellValueChanged(ByVal sender As Object, _ ByVal e As DataGridViewCellEventArgs) _ Handles DataGridView1.CellValueChanged ' Update the unit price column whenever the value of the item cell changes. If DataGridView1.Item(e.ColumnIndex, e.RowIndex) == DataGridView1.Item("Item", e.RowIndex) Then DataGridView1.Item("Unit Price", e.RowIndex).Value = DataGridView1.Item(e.ColumnIndex, e.RowIndex).Value End Sub event reference on MSDNDataGridView.CellValueChanged class reference on MSDN和“备注”部分。