How can I hide the title bar from a Windows Form but still have a Resizing Frame?
+2
A:
Setting FormBorderStyle = None will remove the title bar (at both design and run time) - and also remove your ability to resize the form.
If you need a border you can set:
ControlBox = false
Text = ""
Brian Gillespie
2008-09-18 15:43:22
One side effect of this solution is that by setting Text="" for the form, you get no title in the Taskbar.
Brian Gillespie
2008-09-19 16:30:25
Another side effect is that the border is no longer themed.
Fantius
2009-06-15 14:42:02
A:
Set the ControlBox property of the form to False, and the Text property to empty string. The form will open with no perceivable (to the user) title bar, but they will be able to resize the form.
Nikki9696
2008-09-18 17:08:58