Inheritance: Windows.UI.Xaml.Controls.ListViewBase
 public CatrobatListView()
 {
     this.Clvw = new CatrobatListViewWorker();
     this.Content = this.Clvw;
     this.Clvw.ItemDragCompletedEvent += clvw_ItemDragCompletedEvent;
     this.Clvw.ItemTapped += Clvw_ItemTapped;
     this.Clvw.SmartSelectedItems.CollectionChanged += SmartSelectedItems_CollectionChanged;
     this.Unloaded += CatrobatListView_Unloaded;
     this.SizeChanged += CatrobatListView_SizeChanged;
     this.Loaded += CatrobatListView_Loaded;
 }