Chandra Eskay
Chandra Eskay

Reputation: 2203

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 overlap. It's fine when maximized. Can you suggest something on this? Thanks

Upvotes: 1

Views: 536

Answers (1)

Andy
Andy

Reputation: 30418

Assuming you're using WinForms, you can set the Form's MinimumSize property to the smallest size that you want the Form to be.

Upvotes: 3

Related Questions