Remove the title bar in Windows Forms

lkj picture lkj · Sep 20, 2011 · Viewed 157.4k times · Source

How can I remove the blue border that's on top of the Window Form? (I don't know the name of it exactly.)

Answer

P-Storm picture P-Storm · Sep 20, 2011

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

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