Ejemplo n.º 1
0
 public void SetPropertyChange(string name, IAsyncProperty property)
 {
     property.propertyChanges = () => { this.OnPropertyChanged(name); };
 }
Ejemplo n.º 2
0
 public AsyncTriggerProperty(Action <PropertyChangedEventArgs> onPropertyChanged, IAsyncProperty <T> property)
     : base(onPropertyChanged, property)
 {
 }