Esempio n. 1
0
 /// <summary>
 /// Raises the <see cref="ValueChanging"/> event with the given parameters.
 /// </summary>
 /// <param name="args">The arguments of the event.</param>
 protected void NotifyContentChanging(MemberNodeChangeEventArgs args)
 {
     PrepareChange?.Invoke(this, args);
     ValueChanging?.Invoke(this, args);
 }
 private void OnValueChanging(object sender, MemberNodeChangeEventArgs e)
 {
     ValueChanging?.Invoke(sender, e);
 }
Esempio n. 3
0
 /// <summary>
 /// Raises the <see cref="ValueChanged"/> event with the given arguments.
 /// </summary>
 /// <param name="args">The arguments of the event.</param>
 protected void NotifyContentChanged(MemberNodeChangeEventArgs args)
 {
     ValueChanged?.Invoke(this, args);
     FinalizeChange?.Invoke(this, args);
 }