I have one xamgrid binding with some collection(ItemsSource) . I want to scroll the scrollbar upto selected item. I used xamgridname.ScrollIntoView(Selected item cell) but it doesn't work.How to shift scrollbar present in xamgid programatically so that user need not scroll the scrollbar upto selected item ? what will be solution?
Set the ActiveCell of the grid to the first cell in the row you want to modify
What is probably happening is since you don't have an active cell when the grid gets focus it will set the first cell active and scroll that into view.