Example #1
0
 private void OnScrollChanged(object sender, ScrollChangedEventArgs e)
 {
     foreach (var child in ServersListBox.FindVisualChildren <OnlineItem>())
     {
         child.SetScrolling(_scrolling);
     }
 }
Example #2
0
 private void OnScrollCompleted(object sender, DragCompletedEventArgs e)
 {
     _scrolling = false;
     foreach (var child in ServersListBox.FindVisualChildren <OnlineItem>())
     {
         child.SetScrolling(false);
     }
 }
Example #3
0
 private void OnScrollStarted(object sender, DragStartedEventArgs e)
 {
     _scrolling = true;
     foreach (var child in ServersListBox.FindVisualChildren <OnlineItem>())
     {
         child.SetScrolling(true);
     }
 }