user2687781
user2687781

Reputation: 325

How do I make the winforms controls resize with the window?

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

Answers (2)

Markus
Markus

Reputation: 22501

You can use Anchors and Docks. In addition, controls like a TableLayoutPanel can also support you when creating a layout.

Upvotes: 2

Related Questions