我有一个DataGrid
,点击一下我想找到一个被点击的单元格的索引。我找到了获取DataGridCell
和DataGridCellInfo
的方法,但其中只有列索引。
如何获取行索引?我找不到办法来获得它。
答案 0 :(得分:5)
找到一个asnwer !!对于将要寻找它的未来人来说:
DataGridRow r2 = DataGridRow.GetRowContainingElement(cell);
int rowindex = r2.GetIndex();