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.
Up arrow icon