c# - How to Register the RowLeave event -
i have form in vsto addin. want register formx_rowleave() method. register functions since using visual designer.
this.clientsprojecthistorydatagridview.cellleave += new system.windows.forms.datagridviewcelleventhandler(this.clientsprojecthistorydatagridview_cellleave);
but don't know how rowleave. can't find examples or find in docs. found method in docs not how register event handler. i've tried using visual studio's features display available methods or objects find datagridviewxxxeventhandler applies rowleave, cannot find one. not in docs or anywhere else i've looked.
thanks
but don't know how rowleave. suggestions? can't find examples or find in docs. found method in docs not how register event handler
datagridview
has rowleave
event property can subscribe double-clicking in designer (ensure on events page clicking little lightning bolt icon):
Comments
Post a Comment