标签: c# wpf datagrid row
我怎样才能获得DataGrid的选定行索引然后手动设置?
问候
Pethor
答案 0 :(得分:2)
获取选定的行索引:
int i = myDataGrid.SelectedIndex;
设置选定的行索引:
myDataGrid.SelectedIndex = 4;