ComponentOne True DBGrid for WinForms
Detecting In-Cell Button Clicks
Cell Editing Techniques > In-Cell Buttons > Detecting In-Cell Button Clicks

The ButtonClick event is provided so that code can respond when the user clicks the in-cell button. Its syntax is as follows:

To write code in Visual Basic

Visual Basic
Copy Code
Private Sub C1TrueDBGrid1_ButtonClick(ByVal sender As Object, ByVal e As C1.Win.C1TrueDBGrid.ColEventArgs) Handles C1TrueDBGrid1.ButtonClick

To write code in C#

C#
Copy Code
private void C1TrueDBGrid1_ButtonClick( object sender,  C1.Win.C1TrueDBGrid.ColEventArgs e)

In-cell buttons always fire this event when clicked, regardless of whether they were enabled by the Button or ButtonText properties. An example of the ButtonClick event was presented earlier in the section Working with Text.