I've uploaded the latest version of VistaMenu. It fixes a few other bugs. But the bug you saw was due to a bug in Microsoft's implementation of the ContextMenu control.
The way to get around the bug is to set the Form's "ContextMenu" property to the context menu you want to use:
- Code: Select all
this.ContextMenu = contextMenu1;
Instead of dynamically showing the context menu using contextMenu1.Show()
That should work for you.