You can try handling the grid''s Enter event and checked if the left mouse button is down.
private void gridControl1_Enter(object sender, EventArgs e)
{
bool clicked = Control.MouseButtons == MouseButtons.Left;
Console.WriteLine(clicked.ToString());
}