private void ListView_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
 {
     if (e.Action == NotifyCollectionChangedAction.Add)
     {
         // scroll the new item into view
         Scroller1.ScrollToEnd();
         //listView.ScrollIntoView(e.NewItems[0]);
     }
 }