amax
amax

Reputation: 33

Visual studio form layout tutorial?

I'm a Qt developer, trying to design forms with visual studio.. but the layout toosl are.. lacking? I only see tools for fixed-size forms.

What are the visual studio alternatives to Qt's vertical/horizontal/grid layouts with minimum/maximum/preferred size hints, spacers, etc?? I can't see anything like this.

Upvotes: 3

Views: 1890

Answers (1)

Nikola Radosavljević
Nikola Radosavljević

Reputation: 6911

Closes things you can use are:

FlowLayoutPanel

TableLayoutPanel

Alternatively, you can go for WPF instead of WinForms.

Upvotes: 1

Related Questions