예제 #1
0
        public void JumpToCell(int index)
        {
            if (index < 0 || index >= ItemsSource.Count || index == Context.SelectedIndex)
            {
                return;
            }

            UpdateSelection(index);
            scroller.JumpTo(index);
        }
예제 #2
0
 public void JumpTo(int index)
 {
     scroller.JumpTo(index);
 }