Reputation: 325
So, when I have a form, and I resize it, the controls just get hidden "behind" the form, i guess. I want the controls to resize with the form. How can I do this?
Upvotes: 1
Views: 1719
Reputation: 22501
You can use Anchors and Docks. In addition, controls like a TableLayoutPanel can also support you when creating a layout.
Upvotes: 2
Reputation: 6481
see in MSDN Windows Forms Layout
also Dock, Anchor and Fluid layouts in Windows Forms Applications
Upvotes: 2