I have a situation where it would be beneficial to me to allow my windows form to be resized by the user, but only vertically. After some searching, it seems like there isn't much on this particular subject. Is it possible?
feedback
|
|
You need to set the form's If you don't want the horizontal resize cursor to appear at all, you'll need to handle the
| |||||||
feedback
|
|
Just an idea...
EDIT: please note that the min/max size solutions work much better than this hack :) | |||||
feedback
|
|
Set the max & min size for the width of the form only. | |||||||||||
feedback
|
|
Yes, it is possible. Just set your form.MinimumSize.Width = form.MaximumSize.Width = 100 (or whatever width you want). | |||||||||
feedback
|
|
To avoid the "rubber-banding" effect of @orsogufo's solution:
It won't correctly adjust its maximum height to accommodate a larger screen if you resize the screen bounds, but for static screen sizes it works great. | |||
|
feedback
|
|
Let the FormBorderStyle to Resizable and set MaximumSize and MinimumSize = new Size(this.Width, 0) Correction:
| |||||||||
feedback
|