HA
haneefm
Syncfusion Team
May 9, 2007 11:39 PM UTC
Hi Tom,
You can try handling the CellClick event of the grid and let me know if this helps.
private void gridControl1_CellClick(object sender, GridCellClickEventArgs e)
{
MessageBox.Show("Clicked");
}
Best regards,
Haneef
TZ
Tom Zehrbach
May 11, 2007 02:26 PM UTC
>Hi Tom,
You can try handling the CellClick event of the grid and let me know if this helps.
private void gridControl1_CellClick(object sender, GridCellClickEventArgs e)
{
MessageBox.Show("Clicked");
}
Best regards,
Haneef
Sorry to waste your time, it's a Windows Label control thing. The framework is not passing along mouse click event notifications. If I replace the Label with a TextBox I get the mouse clicks.