Esempio n. 1
0
 protected void OnPropertyChanged(PropertyChangedEventArgs e)
 {
     if (_propertyChanged != null)
     {
         UIDispatcher.BeginInvoke(_propertyChanged, this, e);
     }
 }
Esempio n. 2
0
 protected override void OnPropertyChanged(PropertyChangedEventArgs e)
 {
     UIDispatcher.BeginInvoke(BaseOnPropertyChanged, e);
 }
Esempio n. 3
0
 protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
 {
     UIDispatcher.BeginInvoke(BaseOnCollectionChanged, e);
 }