It allows to resize a form by default when FormBorderStyle=Sizable. But in that case the ugly top bar is shown. I need to hide the top bar but to allow the form to be resized. Any trick of doing that?
Asked
Active
Viewed 52 times
0
-
https://stackoverflow.com/a/75918073/14171304 – dr.null Apr 30 '23 at 23:24
1 Answers
0
Clear the Text
property of the form and set the ControlBox
property to false
. That will retain the draggable border, assuming that FormBorderStyle
enables it, but remove the title bar.

jmcilhinney
- 50,448
- 5
- 26
- 46