How do I capture the button's click event of a DataGridView column?

  • Thread starter Thread starter maarif
  • Start date Start date
M

maarif

I'd created a Template column on my DataGridView which contains a
textbox and a button that is shown while on Edit mode.
How do I capture the button's click event?
I don't want to use the CellClick() event, I just want to capture the
button click event?
 
I'd created a Template column on my DataGridView which contains a
textbox and a button that is shown while on Edit mode.
How do I capture the button's click event?
I don't want to use the CellClick() event, I just want to capture the
button click event?

You can assign an event handler when you create the control. then it
will work as usual
 
Back
Top