All Tags »
DataGrid »
Editing »
DataRow »
Cancel (RSS)
Sorry, but there are no more tags available to filter with.
-
Hi all,
I'm trying to override CancelEdit on my implementation of the DataRow:
public event EventHandler Edit_Cancel;
public override void CancelEdit(){ base.CancelEdit();
OnCancelEdit(this, EventArgs.Empty);}
public void OnCancelEdit(object sender, EventArgs args){ ...