这可能是一个非常简单的问题,但我不能自己解决。我有两个类,如下所示和一个DataGrid。
public class A
{
int id;
int ID {get;set;}
}
和
public class B:A
{
string property;
string Property {get;set;}
}.
当我使用datagrid
将数据绑定到list<B>
时,我只能看到类型。我该怎么办?
我的网格是:
DataGrid datagrid = new Datagrid();
datagrid.ItemSource = mycollection;