I want to create a context menu with multiple columns. Basically it will look like this:
First item | [common option] | All Options >
Second item | [common option] | All Options >
Third item | [common option] | All Options >
Fourth item | [common option] | All Options >
Thus, basically there is a bunch of elements (generated at runtime), each element can start on its own; or with a widely used option; or you can get a submenu with all possible parameters.
How can i do this? I am trying to use both ContextMenuStrip, and ContextMenu, but they seem to have no such parameters. However, I seem to remember that somewhere I saw a menu with several columns ...
I would prefer a Windows Forms solution because I have no WPF experience. Oh, and this context menu will open when you click on the icon in the notification area (aka systray).
Vilx- source
share