This is an overview of the most common usage of DockLayout. For more information about the available properties, methods, or events, head over to the complete API documentation for DockLayout.
<DockLayout>
是一个布局容器,可以将子元素停靠到布局的边或中心。
<DockLayout>
有以下行为:
dock
属性及其子元素停靠到布局的 left
, right
, top
, bottom
或布局的中心。stretchLastChild
父元素的属性设置为 true
。以下示例创建一个由4个元素组成的框架式布局,位于屏幕的4个边缘。
<DockLayout stretchLastChild="false" backgroundColor="#3c495e">
<Label text="left" dock="left" width="40" backgroundColor="#43b883"/>
<Label text="top" dock="top" height="40" backgroundColor="#289062"/>
<Label text="right" dock="right" width="40" backgroundColor="#43b883"/>
<Label text="bottom" dock="bottom" height="40" backgroundColor="#289062"/>
</DockLayout>
以下示例显示了 stretchLastChild
如何影响 DockLayout
容器中子元素的位置。在 (bottom
) 放置前三个元素后被拉伸以占用所有剩余空间。
<DockLayout stretchLastChild="true" backgroundColor="#3c495e">
<Label text="left" dock="left" width="40" backgroundColor="#43b883"/>
<Label text="top" dock="top" height="40" backgroundColor="#289062"/>
<Label text="right" dock="right" width="40" backgroundColor="#43b883"/>
<Label text="bottom" dock="bottom" backgroundColor="#1c6b48"/>
</DockLayout>
以下示例在 <DockLayout>
中创建了5个元素。前四个将中心元素包裹在一个框架中。
<DockLayout stretchLastChild="true" backgroundColor="#3c495e">
<Label text="left" dock="left" width="40" backgroundColor="#43b883"/>
<Label text="top" dock="top" height="40" backgroundColor="#289062"/>
<Label text="right" dock="right" width="40" backgroundColor="#43b883"/>
<Label text="bottom" dock="bottom" height="40" backgroundColor="#289062"/>
<Label text="center" backgroundColor="#1c6b48" />
</DockLayout>
以下示例创建一个包含4个元素的行,这些元素在屏幕的整个高度和宽度上延伸。
<DockLayout stretchLastChild="true" backgroundColor="#3c495e">
<Label text="left 1" dock="left" width="40" backgroundColor="#43b883"/>
<Label text="left 2" dock="left" width="40" backgroundColor="#289062"/>
<Label text="left 3" dock="left" width="40" backgroundColor="#1c6b48"/>
<Label text="last child" backgroundColor="#43b883"/>
</DockLayout>
名称 | 类型 | 描述 |
---|---|---|
stretchLastChild | Boolean | 启用或禁用拉伸最后一个子项以适合剩余空间。 |
当元素是直接子元素时 <DockLayout>
,您可以使用以下附加属性。
名称 | 类型 | 描述 |
---|---|---|
dock | String | 指定将元素停靠到哪一侧。 有效值: top , right , bottom , 或 left 。 |