views:

885

answers:

2

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;
A: 

Grid.GetRow(urGridctrl);

Cool
A: 

You can find the answer on the following link http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/0cdf2968-00e8-4ea5-aea0-ffd0e8230110

Mohammed A. Fadil