public DispatchedObservableCollection(Dispatcher dispatcher)
 {
     this.collectionChanged = new DispatchEvent();
     this.propertyChanged   = new DispatchEvent();
 }
 public DispatchedObservableCollection(List <Titem> list)
     : base(list)
 {
     this.collectionChanged = new DispatchEvent();
     this.propertyChanged   = new DispatchEvent();
 }