Reputation: 2203
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
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