Exemplo n.º 1
0
 private void ButtonCancel_Click(object sender, RoutedEventArgs e)
 {
     CancelEdit?.Invoke(this, EventArgs.Empty);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Triggers the <see cref="CancelEdit"/> event.
 /// </summary>
 /// <param name="e">Cell event arguments</param>
 protected virtual void OnCancelEdit(CellEventArgs e) => CancelEdit?.Invoke(this, e);
Exemplo n.º 3
0
 public void handleCancel()
 {
     CancelEdit?.Invoke(this, Base);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Raises the CancelEdit event.
 /// </summary>
 protected void OnCancel()
 {
     CancelEdit?.Invoke(this, new EventArgs());
 }