A form should only grow but should not shrink than the specified size, How to do this?
I have a C# form on which controls are laid and I have set the anchors for controls. The problem is when I shrink the form the controls o开发者_如何学Pythonverlap. It's fine when maximized. Can you suggest something on this? Thanks
Assuming you're using WinForms, you can set the Form's MinimumSize property to the smallest size that you want the Form to be.
精彩评论