Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为数据网格中的单元格分配一些值(一些列)使用
foreach(var member in listofmember) { ///what method is possible }
listofmember 是一个结构列表。我只想在数据网格中显示一些结构的成员。
如果您分配 ItemSource 更好地处理此类情况,例如您的 DataGrid 包含Person类信息,因此您可以将其分配给 Person 列表:
Person
myDataGrid.ItemSource = new List<Person>{p1,p2,p3};
您也可以简单地在您的列表中搜索并对其进行更改,最后将其重新分配给您的网格。通过这种方式,您可以将它们分开,您也可以在将来使用 NotifyPropertyChange。