Remove the title bar in Windows Forms

You can set the Property FormBorderStyle to none in the designer,
or in code:

this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;

Leave a Comment