I have winform with picture box, button and menustrip. The picture box is tied to all sides, so when I resize the form, the image also changes. I set the minimum size for the form to 700x600.
But this only works when the form is set to AutoSizeMode = GrowOnly. If I switch to AutoSizeMode = GrowAndShrink, the diagonal <=> will reduce the size of the arrow.
If I set SizeGripStyle = Show on form, I can get an arrow to display and “resize”, but as I drag it to resize, it just flickers very quickly and returns to the default size.
How can I do this GrowAndShrink instead of just GrowOnly?
source
share