Ejemplo n.º 1
0
 private void ChildObject_PropertyValueChanging(object sender, PropertyValueChangingEventArgs e)
 {
     RaiseChildObjectEvent(new ForwardedEventArgs(sender, "PropertyValueChanging", e));
 }
Ejemplo n.º 2
0
 protected void RaisePropertyValueChanging(PropertyValueChangingEventArgs args)
 {
     PropertyChanging?.Invoke(this, args);
     PropertyValueChanging?.Invoke(this, args);
 }
Ejemplo n.º 3
0
 private void Value_PropertyValueChanging(object sender, PropertyValueChangingEventArgs e)
 {
     ChildEventHandler(this, nameof(PropertyValueChanging), e);
 }