I have used ChangeView in WinRT instead of using ScrollToHorizontalOffset.
But i faced an issue page will be left blank when longpress the left/right key to scroll the grid. but which is not in ScrollToHorizontalOffset.
ScrollOwner.ScrollToHorizontalOffset(HorizontalOffset); //i have used this before
ScrollOwner.ChangeView(HorizontalOffset, 0, 1.0f); //now i have used this code to set the HorizontalOffset
Can you have an idea?