Is it possible to add ToolStripMenuItems to ContextMenuStrip at a specific index? I have a list of items and I want to add them to a ContextMenuStrip and I want to know if its possible to add the items to the ContextMenu at specific index.
This is my list:
Item1
Item2
Item3
Item4
I want to add them to the ContextMenu so they appear like this in the menu:
Item2
Item3
Item1
Item4
Is it possible to do that?
All help is very appreciated.