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):

enter image description here


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -