How to get row index of selected cell in WPF grid

Does anyone know how to get the row index of a selected cell in a WPF DevExpress grid? In WinForms, it was something like this:

dataGridViewControll.SelectedCells[0].RowIndex;
+3
source share
1 answer

Grid.GetRow (urGridctrl);

+1
source

Source: https://habr.com/ru/post/1723322/


All Articles