How to show menu in borderless form in c#? [closed]
is it possible to开发者_运维问答 show menu in borderless form in c#. if yes tell me the way please.thanks
Yes. Set your Form.BorderStyle = None
This has no effect on your Menu.
In windows forms you will want to call the following:
FormBorderStyle = FormBorderStyle.None;
Although, when you do this, you will need to make your own MouseDown and MouseMove event handlers to move your form around, as well as code custom minimize and maximize functionality. If you need help with those I can aid you as well.
Good luck!
精彩评论