Click here to Skip to main content
15,889,200 members
Please Sign up or sign in to vote.
3.00/5 (4 votes)
See more:
hi all developers
i want to completely remove my windows form tape(the tape in the top of the form that include close button,icon,.... )
how and which property can help me to do that????????
please help me
thank you.
Posted

1 solution

You simply need to set the FormBorderStyle to "None" in the Windows forms designer. It is a property of the form. You may also want to use this code instead of setting the property in the designer:
C#
private void Form1_Load(object sender, EventArgs e)
{
  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
}
 
Share this answer
 
v2
Comments
daghune 13-Aug-12 1:26am    
thank you very much.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900