tags:

views:

87

answers:

2

I would like to align like this

label1 TextBox1
label2 TextBox2
label3 TextBox3

I set FlowDirection to TopDown but how can I do to align label1 with TextBox1 horizontally ?

A: 

FlowLayoutPanel does not support that behavior. However, you could achieve the same result if you group each label/TextBox combo on e.g. their own panel and then set the FlowDirection to TopDown

Tom Frey
+2  A: 

Why use a FlowLayoutPanel for this? A TableLayoutPanel would seem much better suited.

Adam Robinson