Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
78c26e6d
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
78c26e6d
编写于
1月 25, 2022
作者:
Z
zhongyuyan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改Column和Row文档
Signed-off-by:
N
zhongyuyan
<
zhongyuyan1@huawei.com
>
上级
90314f03
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
82 addition
and
38 deletion
+82
-38
zh-cn/application-dev/reference/arkui-ts/figures/Column.png
zh-cn/application-dev/reference/arkui-ts/figures/Column.png
+0
-0
zh-cn/application-dev/reference/arkui-ts/figures/Row.png
zh-cn/application-dev/reference/arkui-ts/figures/Row.png
+0
-0
zh-cn/application-dev/reference/arkui-ts/figures/column.gif
zh-cn/application-dev/reference/arkui-ts/figures/column.gif
+0
-0
zh-cn/application-dev/reference/arkui-ts/figures/row.png
zh-cn/application-dev/reference/arkui-ts/figures/row.png
+0
-0
zh-cn/application-dev/reference/arkui-ts/ts-container-column.md
...application-dev/reference/arkui-ts/ts-container-column.md
+42
-20
zh-cn/application-dev/reference/arkui-ts/ts-container-row.md
zh-cn/application-dev/reference/arkui-ts/ts-container-row.md
+40
-18
未找到文件。
zh-cn/application-dev/reference/arkui-ts/figures/Column.png
0 → 100644
浏览文件 @
78c26e6d
16.7 KB
zh-cn/application-dev/reference/arkui-ts/figures/Row.png
0 → 100644
浏览文件 @
78c26e6d
18.4 KB
zh-cn/application-dev/reference/arkui-ts/figures/column.gif
已删除
100644 → 0
浏览文件 @
90314f03
8.7 KB
zh-cn/application-dev/reference/arkui-ts/figures/row.png
已删除
100644 → 0
浏览文件 @
90314f03
9.1 KB
zh-cn/application-dev/reference/arkui-ts/ts-container-column.md
浏览文件 @
78c26e6d
# Column<a name="ZH-CN_TOPIC_0000001192915096"></a>
>![](../../public_sys-resources/icon-note.gif) **说明:**
>![](../../public_sys-resources/icon-note.gif) **说明:**
>该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
沿垂直方向布局的容器。
...
...
@@ -46,6 +46,7 @@ Column\(value:\{space?: Length\}\)
</table>
## 属性<a name="section358284262918"></a>
<table><thead
align=
"left"
><tr><th
class=
"cellrowborder"
valign=
"top"
width=
"13%"
id=
"mcps1.1.5.1.1"
><p>
名称
</p>
...
...
@@ -68,6 +69,16 @@ Column\(value:\{space?: Length\}\)
</td>
</tr>
</tbody>
<tbody><tr><td
class=
"cellrowborder"
valign=
"top"
width=
"13%"
headers=
"mcps1.1.5.1.1 "
><p>
justifyContent
</p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"19%"
headers=
"mcps1.1.5.1.2 "
><p><a
href=
"#li1540916112452"
>
FlexAlign
</a></p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"9%"
headers=
"mcps1.1.5.1.3 "
><p>
Start
</p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"59%"
headers=
"mcps1.1.5.1.4 "
><p>
设置子组件在主轴方向上的对齐格式。
</p>
</td>
</tr>
</tbody>
</table>
-
<a
name=
"li8105435144314"
></a>
HorizontalAlign枚举说明
...
...
@@ -104,28 +115,39 @@ Column\(value:\{space?: Length\}\)
@Component
struct ColumnExample {
build() {
Column({ space: 5 }) {
Text('space').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column({ space: 5 }) {
Column().width('100%').height(50).backgroundColor(0xAFEEEE)
Column().width('100%').height(50).backgroundColor(0x00FFFF)
}.width('90%').height(107).border({ width: 1 })
Text('alignItems(Start)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('50%').height(50).backgroundColor(0xAFEEEE)
Column().width('50%').height(50).backgroundColor(0x00FFFF)
}.alignItems(HorizontalAlign.Start).width('90%').border({ width: 1 })
Text('alignItems(End)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('50%').height(50).backgroundColor(0xAFEEEE)
Column().width('50%').height(50).backgroundColor(0x00FFFF)
}.alignItems(HorizontalAlign.End).width('90%').border({ width: 1 })
Text('space').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column({ space: 5 }) {
Column().width('100%').height(30).backgroundColor(0xAFEEEE)
Column().width('100%').height(30).backgroundColor(0x00FFFF)
}.width('90%').height(100).border({ width: 1 })
Text('alignItems(Start)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('50%').height(30).backgroundColor(0xAFEEEE)
Column().width('50%').height(30).backgroundColor(0x00FFFF)
}.alignItems(HorizontalAlign.Start).width('90%').border({ width: 1 })
Text('alignItems(End)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('50%').height(30).backgroundColor(0xAFEEEE)
Column().width('50%').height(30).backgroundColor(0x00FFFF)
}.alignItems(HorizontalAlign.End).width('90%').border({ width: 1 })
Text('justifyContent(Center)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('30%').height(30).backgroundColor(0xAFEEEE)
Column().width('30%').height(30).backgroundColor(0x00FFFF)
}.height('15%').border({ width: 1 }).justifyContent(FlexAlign.Center)
Text('justifyContent(End)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('30%').height(30).backgroundColor(0xAFEEEE)
Column().width('30%').height(30).backgroundColor(0x00FFFF)
}.height('15%').border({ width: 1 }).justifyContent(FlexAlign.End)
}.width('100%').padding({ top: 5 })
}
}
```
![](
figures/
column.gif
)
![](
figures/
Column.png
)
zh-cn/application-dev/reference/arkui-ts/ts-container-row.md
浏览文件 @
78c26e6d
# Row<a name="ZH-CN_TOPIC_0000001237355047"></a>
>![](../../public_sys-resources/icon-note.gif) **说明:**
>![](../../public_sys-resources/icon-note.gif) **说明:**
>该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
沿水平方向布局容器。
...
...
@@ -68,6 +68,16 @@ Row\(value:\{space?: Length\}\)
</td>
</tr>
</tbody>
<tbody><tr><td
class=
"cellrowborder"
valign=
"top"
width=
"13%"
headers=
"mcps1.1.5.1.1 "
><p>
justifyContent
</p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"19%"
headers=
"mcps1.1.5.1.2 "
><p><a
href=
"#li1540916112452"
>
FlexAlign
</a></p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"9%"
headers=
"mcps1.1.5.1.3 "
><p>
Start
</p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"59%"
headers=
"mcps1.1.5.1.4 "
><p>
设置子组件在主轴方向上的对齐格式。
</p>
</td>
</tr>
</tbody>
</table>
-
VerticalAlign枚举说明
...
...
@@ -107,26 +117,38 @@ struct RowExample {
build() {
Column({ space: 5 }) {
Text('space').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row({ space: 20 }) {
Row().width(150).height(50).backgroundColor(0xAFEEEE)
Row().width(150).height(50).backgroundColor(0x00FFFF)
}.width(321).height(52).border({ width: 1 })
Text('alignItems(Bottom)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('50%').height(50).backgroundColor(0xAFEEEE)
Row().width('50%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Bottom).width('90%').height(100).border({ width: 1 })
Text('alignItems(Top)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('50%').height(50).backgroundColor(0xAFEEEE)
Row().width('50%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Top).width('90%').height(100).border({ width: 1 })
Row({ space: 5 }) {
Row().width('30%').height(50).backgroundColor(0xAFEEEE)
Row().width('30%').height(50).backgroundColor(0x00FFFF)
}.width('90%').height(107).border({ width: 1 })
Text('alignItems(Top)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('30%').height(50).backgroundColor(0xAFEEEE)
Row().width('30%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Top).height('15%').border({ width: 1 })
Text('alignItems(Center)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('30%').height(50).backgroundColor(0xAFEEEE)
Row().width('30%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Center).height('15%').border({ width: 1 })
Text('justifyContent(End)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('30%').height(50).backgroundColor(0xAFEEEE)
Row().width('30%').height(50).backgroundColor(0x00FFFF)
}.width('90%').border({ width: 1 }).justifyContent(FlexAlign.End)
Text('justifyContent(Center)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('30%').height(50).backgroundColor(0xAFEEEE)
Row().width('30%').height(50).backgroundColor(0x00FFFF)
}.width('90%').border({ width: 1 }).justifyContent(FlexAlign.Center)
}.width('100%')
}
}
```
![](
figures/
r
ow.png
)
![](
figures/
R
ow.png
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录