Ejemplo n.º 1
0
 /// <summary>
 /// Scroll to the top of the page
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ScrollToTopClick(object sender, RoutedEventArgs e)
 {
     if (Indices.Any())
     {
         SeriesGrid.ScrollIntoView(Indices[0]);
     }
 }
 private void SeriesGrid_SelectionChanged(object sender, EventArgs e)
 {
     SeriesGrid.ClearSelection();
 }