Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 248
ikathegreat Avatar asked Mar 30 '26 19:03

ikathegreat


1 Answers

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

like image 163
Ben Voigt Avatar answered Apr 02 '26 03:04

Ben Voigt