private void ButtonCancel_Click(object sender, RoutedEventArgs e) { CancelEdit?.Invoke(this, EventArgs.Empty); }
/// <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);
public void handleCancel() { CancelEdit?.Invoke(this, Base); }
/// <summary> /// Raises the CancelEdit event. /// </summary> protected void OnCancel() { CancelEdit?.Invoke(this, new EventArgs()); }