void incc_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
 {
     if (e.Action == NotifyCollectionChangedAction.Add)
     {
         listBox.ScrollIntoView(e.NewItems[0]);
         listBox.SelectedItem = e.NewItems[0];
     }
 }