我旁边有一个数据网格和按钮,我想通过它来浏览数据网格:下一行,第一行,最后一行,上一行。
当我点击例如"上一行"时,我希望显然选择上一行:D。
dataGrid.CurrentRowIndex = dataGrid.CurrentRowIndex-1;
仅移动单元格的索引,但不移动选择。
我能做到这一点
DataGrdid.Select(thedesiredrow)
但是这并没有取消选择之前选择的行。 有没有一种方法可以取消选择紧凑框架中每个先前选择的(多个)行,还是有更优雅的方法来执行此操作? 谢谢!
答案 0 :(得分:0)
你可以试试这个
MyDataGrid.SelectedIndex = "Here put number for the new selected item";