We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Cell double click TableControlCurrentCellControlDoubleClick Left Mouse

Hi,

we are using a GGC. Now I want to open a new form on a cell double click. I have read in the forum to use the TableControlCurrentCellControlDoubleClick event. But how can I get the information which mouse button was pressed.

Any ideas?

Tom

1 Reply

HA haneefm Syncfusion Team June 15, 2007 04:20 PM UTC

Hi Tom,

You can use the Control.MouseButton property to get a value indicating which of the mouse buttons in a pressed state. Here is a code snippet

void gridGroupingControl1_TableControlCurrentCellControlDoubleClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlControlEventArgs e)
{
if (Control.MouseButtons == MouseButtons.Left)
{
Console.WriteLine("Left clicked");
}
}

Best regards,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon