All Tags »
focus »
Selection (RSS)
Sorry, but there are no more tags available to filter with.
-
Hi Yuriy,
Fist of all get hold of the item you wish to navigateSystem.Data.DataRowView dv = myGrid.Items[myIndex];
Then set this item as the current itemmyGrid.CurrentItem = dv;
Then select itmyGrid.BringItemIntoView(dv);
and you are done...
Enjoy