【发布时间】:2019-04-08 08:35:41
【问题描述】:
如何将 DataGridView 行传递给不同表单上的 DataGridView?
pos_receipt.PrintTable.Rows.Add(row.Cells("item_info").Value.ToString,
row.Cells("Quantity").Value.ToString,
row.Cells("Rate").Value.ToString,
row.Cells("total").Value.ToString)
注意:pos_receipt是我要传递行的DataGridView所在的Form名称。
PrintTable是一个数据表
【问题讨论】:
标签: vb.net winforms datagridview