我有一个WPF数据网格,我想获取网格中所有选定的单元格,我可以通过循环遍历所有项目来完成它,所以有没有内置的方法来做到这一点?
我在DataGrid中设置了两个属性:
SelectionMode="Extended" // for multiple selection
SelectionUnit="Cell" //row should not be selected but cell should be
感谢。
答案 0 :(得分:6)
DataGrid具有SelectedCells属性。这是你在找什么?
答案 1 :(得分:0)
我知道Grid.selecteditem
适用于行选择;我认为它也适用于细胞。