コード例 #1
0
 /// <summary>
 /// Handles the <see cref="E:ValueChanged" /> event.
 /// </summary>
 /// <param name="args">The <see cref="ExtPropertyChangedEventArgs"/> instance containing the event data.</param>
 protected void OnValueChanged(ExtPropertyChangedEventArgs args)
 {
     if (ExtPropertyChanged != null)
     {
         ExtPropertyChanged.Invoke(this, args);
     }
 }
コード例 #2
0
 /// <summary>
 /// Handles the <see cref="E:ValueChanged" /> event.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="ExtPropertyChangedEventArgs"/> instance containing the event data.</param>
 public virtual void OnValueChanged(object sender, ExtPropertyChangedEventArgs e)
 {
     if (ExtPropertyChanged != null)
     {
         ExtPropertyChanged.Invoke(sender, e);
     }
 }