| The following is a brief discussion of
properties pertinent to the FLP.
- FlowDirection set the direction of flow to be
LeftToRight, RightToLeft, TopDown or BottomUp.
- WrapContents specifies whether the flow wraps
into multiple columns/rows when it runs out of space.
- Margin specify the separation between controls.
E.g. if two buttons are in FlowDirection.TopDown with WrapContents =
false, the spacing between button1 and button2 should be
button1.Margin.Bottom + button2.Marigin.Top
|