Does anyone know how I can resize a winform when it has no border. I don't want the default border that Windows has, so I changed the property "FormBorderStyle" to "None". This removed the border, although now it can't be resized. I've figured out how to move the form around, I just need to know how to resize it.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Some sample code that allow moving and resizing the form:
|
||||
|
|
|
Take a look here: |
|||
|
|
|
If you remove the border you also remove the builtin functionality to resize the frame. There are ways to get around it, but you would have to build your own functionality for drag-and-resize the border. |
|||
|
|