Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
054c5b62
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看板
未验证
提交
054c5b62
编写于
1月 26, 2022
作者:
O
openharmony_ci
提交者:
Gitee
1月 26, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1309 fix :Column和Row文档
Merge pull request !1309 from zhongyuyan/master
上级
65ab37ba
bd711772
变更
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
浏览文件 @
054c5b62
16.7 KB
zh-cn/application-dev/reference/arkui-ts/figures/Row.png
0 → 100644
浏览文件 @
054c5b62
18.4 KB
zh-cn/application-dev/reference/arkui-ts/figures/column.gif
已删除
100644 → 0
浏览文件 @
65ab37ba
8.7 KB
zh-cn/application-dev/reference/arkui-ts/figures/row.png
已删除
100644 → 0
浏览文件 @
65ab37ba
9.1 KB
zh-cn/application-dev/reference/arkui-ts/ts-container-column.md
浏览文件 @
054c5b62
...
...
@@ -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
<sup>
8+
</sup></p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"19%"
headers=
"mcps1.1.5.1.2 "
><p><a
href=
"ts-container-flex.md#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(5
0).backgroundColor(0xAFEEEE)
Column().width('100%').height(5
0).backgroundColor(0x00FFFF)
}.width('90%').height(107
).border({ width: 1 })
Column().width('100%').height(3
0).backgroundColor(0xAFEEEE)
Column().width('100%').height(3
0).backgroundColor(0x00FFFF)
}.width('90%').height(100
).border({ width: 1 })
Text('alignItems(Start)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('50%').height(5
0).backgroundColor(0xAFEEEE)
Column().width('50%').height(5
0).backgroundColor(0x00FFFF)
Column().width('50%').height(3
0).backgroundColor(0xAFEEEE)
Column().width('50%').height(3
0).backgroundColor(0x00FFFF)
}.alignItems(HorizontalAlign.Start).width('90%').border({ width: 1 })
Text('alignItems(End)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Column() {
Column().width('50%').height(5
0).backgroundColor(0xAFEEEE)
Column().width('50%').height(5
0).backgroundColor(0x00FFFF)
Column().width('50%').height(3
0).backgroundColor(0xAFEEEE)
Column().width('50%').height(3
0).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
浏览文件 @
054c5b62
...
...
@@ -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
<sup>
8+
</sup></p>
</td>
<td
class=
"cellrowborder"
valign=
"top"
width=
"19%"
headers=
"mcps1.1.5.1.2 "
><p><a
href=
"ts-container-flex.md#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 })
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(Bottom
)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Text('alignItems(Top
)').fontSize(9).fontColor(0xCCCCCC).width('90%')
Row() {
Row().width('5
0%').height(50).backgroundColor(0xAFEEEE)
Row().width('5
0%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Bottom).width('90%').height(100
).border({ width: 1 })
Row().width('3
0%').height(50).backgroundColor(0xAFEEEE)
Row().width('3
0%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Top).height('15%'
).border({ width: 1 })
Text('alignItems(Top)').fontSize(9).fontColor(0xCCCCCC).width('90%')
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('5
0%').height(50).backgroundColor(0xAFEEEE)
Row().width('5
0%').height(50).backgroundColor(0x00FFFF)
}.alignItems(VerticalAlign.Top).width('90%').height(100).border({ width: 1 }
)
Row().width('3
0%').height(50).backgroundColor(0xAFEEEE)
Row().width('3
0%').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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录