I would like to be able to scroll the grid up/down from another window, by code, I am usig the following method, but it does not work. The row does not move. I have set EnableVirtualization="true", as per documentatiuon.
var value = await MainGrid.GetSelectedRowIndexesAsync();
int newValue = Convert.ToInt32(value[0] + 1);
MainGrid.ScrollIntoViewAsync(-1, Convert.ToInt32(newValue));
// If I use this other method it does scroll, but does not move to the next page
MainGrid.SelectRowAsync(newValue);