Tool, menu strip - how do I change their locations in c# winforms?

c#, winforms

Solution

Yes, you can easily do that.

- Drag and drop MenuStrip

- Select it and Goto->Properties

- Set Dock-> None

- Then move anywhere as you want.

Problem

I noticed that tool and menu strips are very restrictive. Is there any way to change the location of a toolstrip or menustrip? I want to have a drop down menu in a custom location on my winforms application (I'm using c#). If not, is there any other dropdown menu type component I can try?

Original source