Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

winforms

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?

like image 307
Newuser Avatar asked Jan 11 '23 21:01

Newuser


1 Answers

Yes, you can easily do that.

  • Drag and drop MenuStrip
  • Select it and Goto->Properties
  • Set Dock-> None
  • Then move anywhere as you want.
like image 128
Sriram Sakthivel Avatar answered Feb 04 '23 10:02

Sriram Sakthivel