0

我想为数据网格中的单元格分配一些值(一些列)使用

foreach(var member in listofmember)
{
   ///what method is possible
}

listofmember 是一个结构列表。我只想在数据网格中显示一些结构的成员。

4

1 回答 1

0

如果您分配 ItemSource 更好地处理此类情况,例如您的 DataGrid 包含Person类信息,因此您可以将其分配给 Person 列表:

myDataGrid.ItemSource = new List<Person>{p1,p2,p3};

您也可以简单地在您的列表中搜索并对其进行更改,最后将其重新分配给您的网格。通过这种方式,您可以将它们分开,您也可以在将来使用 NotifyPropertyChange。

于 2012-06-19T20:52:04.347 回答