Search code examples
c#winformstitlebar

Fullscreen application option (hide app title bar)


Hello I would like to know if there is a way to have my application run, without a title bar, essentially maximized so that only the body is visible on the screen. I'm sure I can work things like a show/hide option for a menuStrip on mouseOver or something like that, but for the title bar, I'm not sure. If there was a way to show/hide that on a mouseOver can someone provide an example? This is for a WinForms application.


Solution

  • In WinForms, you can just set FormBorderStyle = FormBorderStyle.None;