Windows Form with Resizing Frame and no Title Bar?

Brian Gillespie picture Brian Gillespie · Sep 18, 2008 · Viewed 15.7k times · Source

How can I hide the title bar from a Windows Form but still have a Resizing Frame?

Answer

Brian Gillespie picture Brian Gillespie · Sep 18, 2008

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 = ""