将对象数组绑定到DataGridView控件

时间:2020-04-20 21:33:58

标签: c# data-binding datagridview datasource datagridviewcolumn

我有一个基类Product数组,其中包含派生类MedicationParapharmaceutical的对象。

在DataGridView控件中,我试图显示所有字段(基本类的字段以及每个派生类的特定字段)。

dataGridView1.DataSource = ArrayOfProducts;

dataGridView1.ColumnCount = 6;

dataGridView1.Columns[0].Name = "Reference";

...

现在的问题是如何将数组对象的属性绑定到列(对象的类型不同)?

1 个答案:

答案 0 :(得分:0)

尚不清楚您要在此处完成什么,但是听起来您需要将“ ArrayOfProducts”设置为 DataTable ,以控制数据的关联具有正确的列和数据类型。有帮助吗?