Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 MainMenu 控件之上放置一个控件,但是设计器不会让您将控件移动到 MainMenu 控件之上。
还有另一种方法可以实现这一目标吗?
结果是MainMenu控件不支持这种行为,但是使用MenuStrip控件(在 .net 2.0 中引入)支持这种行为。
MainMenu
MenuStrip
所以我只需要将控件更改为新类型即可使其正常工作。
将控件属性设置为
control.Dock = DockStyle.Top; control.SendToBack();