I have created a menu ContextMenu1, I hope the pop menu don't display in some situations, how I can do thinks!
private void ContextMenu1_Popup(object sender, System.EventArgs e)
{
if (condition==true)
{
// Don't pop the menu, how can do I
}
}

How can disable the context menu?
bljacobs
MasterG152
How about trying this:
private void ContextMenu1_Popup(object sender, System.EventArgs e)
{
if (condition==true)
{
contextMenu1.Visible = false;
}
}