ColumnLayout.Sizing Property
Controls whether columns fills available space.
By default Sizing
is set to Fixed
, which means each column will be the exact size
specified in ColumnSize
.
When Sizing
is set to Fill
the columns will stretch out to fill the space remaning
after placing as many ColumnSize
-sized columns as will fit on the display.
Note that
Sizing
only will only affect the layout when theColumnSize
attribute is defined.
<Panel Color="#000000" >
<ColumnLayout Sizing="Fill" ColumnSize="50" />
<Each Count="10">
<Rectangle Height="30" Color="White" />
<Rectangle Height="30" Color="Red" />
</Each>
</Panel>
Location
- Namespace
- Fuse.Layouts
- Package
- Fuse.Controls.Panels 2.9.1