I'm wanting to be able to disable context menu items on the mouseup event based upon the value of the cell that has focus.
However, I noticed it doesn't fire until after clicking in a different cell.
To see an example, add a GridDesktop to a form. Add the following event for MouseUp.
private void gridDesktop1_MouseUp(object sender, MouseEventArgs e)
{
Console.WriteLine("Clicked");
}
Run the application and right-click in a cell. Notice the "Clicked" does not show until you click in another cell.