Vytas
Vytas

Reputation: 1291

How to get row index of the selected cell in WPF grid

Does anyone knows how to get row index of the selected cell in DevExpress WPF grid? In WinForms it was something like that:

dataGridViewControll.SelectedCells[0].RowIndex;

Upvotes: 3

Views: 13465

Answers (1)

Dipak
Dipak

Reputation: 443

Grid.GetRow(urGridctrl);

Upvotes: 1

Related Questions