Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
560c6343
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
560c6343
编写于
9月 24, 2022
作者:
S
sienna1128
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update docs
Signed-off-by:
N
sienna1128
<
lixiaoyan45@huawei.com
>
上级
8d8844ee
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
7 addition
and
7 deletion
+7
-7
zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pinchgesture.md
...-dev/reference/arkui-ts/ts-basic-gestures-pinchgesture.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-universal-component-area-change-event.md
...ence/arkui-ts/ts-universal-component-area-change-event.md
+4
-4
zh-cn/application-dev/reference/arkui-ts/ts-universal-events-key.md
...ication-dev/reference/arkui-ts/ts-universal-events-key.md
+1
-1
zh-cn/application-dev/ui/ts-framework-file-access-rules.md
zh-cn/application-dev/ui/ts-framework-file-access-rules.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pinchgesture.md
浏览文件 @
560c6343
...
@@ -40,7 +40,7 @@ struct PinchGestureExample {
...
@@ -40,7 +40,7 @@ struct PinchGestureExample {
build
()
{
build
()
{
Flex
({
direction
:
FlexDirection
.
Column
,
alignItems
:
ItemAlign
.
Center
,
justifyContent
:
FlexAlign
.
SpaceBetween
})
{
Flex
({
direction
:
FlexDirection
.
Column
,
alignItems
:
ItemAlign
.
Center
,
justifyContent
:
FlexAlign
.
SpaceBetween
})
{
Text
(
'
PinchGesture scale:
'
+
this
.
scale
)
Text
(
'
PinchGesture scale:
'
+
this
.
scale
Value
)
}
}
.
height
(
100
).
width
(
200
).
padding
(
20
).
border
({
width
:
1
}).
margin
(
80
)
.
height
(
100
).
width
(
200
).
padding
(
20
).
border
({
width
:
1
}).
margin
(
80
)
.
scale
({
x
:
this
.
scaleValue
,
y
:
this
.
scaleValue
,
z
:
this
.
scaleValue
})
.
scale
({
x
:
this
.
scaleValue
,
y
:
this
.
scaleValue
,
z
:
this
.
scaleValue
})
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-component-area-change-event.md
浏览文件 @
560c6343
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
| 名称 | 支持冒泡 | 功能描述 |
| 名称 | 支持冒泡 | 功能描述 |
| ---------------------------------------- | ---- | ---------------------------------------- |
| ---------------------------------------- | ---- | ---------------------------------------- |
| onAreaChange(event:
(oldValue:
Area,
newValue:
Area)
=
>
void) | 否 | 组件区域变化时触发该回调,Area类型描述见
[
Area
](
ts-types.md#area8
)
。 |
| onAreaChange(event:
(oldValue:
[Area](ts-types.md#area8),
newValue:
[Area](ts-types.md#area8))
=
>
void) | 否 | 组件区域变化时触发该回调
。 |
## 示例
## 示例
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
@
Component
@
Component
struct
AreaExample
{
struct
AreaExample
{
@
State
value
:
string
=
'
Text
'
@
State
value
:
string
=
'
Text
'
@
State
size
:
string
=
''
@
State
size
Value
:
string
=
''
build
()
{
build
()
{
Column
()
{
Column
()
{
...
@@ -33,9 +33,9 @@ struct AreaExample {
...
@@ -33,9 +33,9 @@ struct AreaExample {
})
})
.
onAreaChange
((
oldValue
:
Area
,
newValue
:
Area
)
=>
{
.
onAreaChange
((
oldValue
:
Area
,
newValue
:
Area
)
=>
{
console
.
info
(
`Ace: on area change, oldValue is
${
JSON
.
stringify
(
oldValue
)}
value is
${
JSON
.
stringify
(
newValue
)}
`
)
console
.
info
(
`Ace: on area change, oldValue is
${
JSON
.
stringify
(
oldValue
)}
value is
${
JSON
.
stringify
(
newValue
)}
`
)
this
.
size
=
JSON
.
stringify
(
newValue
)
this
.
size
Value
=
JSON
.
stringify
(
newValue
)
})
})
Text
(
'
new area is:
\n
'
+
this
.
size
).
margin
({
right
:
30
,
left
:
30
})
Text
(
'
new area is:
\n
'
+
this
.
size
Value
).
margin
({
right
:
30
,
left
:
30
})
}
}
.
width
(
'
100%
'
).
height
(
'
100%
'
).
margin
({
top
:
30
})
.
width
(
'
100%
'
).
height
(
'
100%
'
).
margin
({
top
:
30
})
}
}
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-events-key.md
浏览文件 @
560c6343
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
| onKeyEvent(event:
(event?:
KeyEvent)
=
>
void) | 是 | 绑定该方法的组件获焦后,按键动作触发该方法调用,event参数见
[
KeyEvent
](
#keyevent对象说明
)
介绍。 |
| onKeyEvent(event:
(event?:
KeyEvent)
=
>
void) | 是 | 绑定该方法的组件获焦后,按键动作触发该方法调用,event参数见
[
KeyEvent
](
#keyevent对象说明
)
介绍。 |
>
>
> 该事件适用于所有可交互组件(默认可获焦),例如Button;对于Text
,
Image等不可获焦组件,可以设置.focasable(true)后使用按键事件。
> 该事件适用于所有可交互组件(默认可获焦),例如Button;对于Text
,
Image等不可获焦组件,可以设置.focasable(true)后使用按键事件。
## KeyEvent对象说明
## KeyEvent对象说明
...
...
zh-cn/application-dev/ui/ts-framework-file-access-rules.md
浏览文件 @
560c6343
# 文件访问规则
# 文件访问规则
应用代码中文件访问方法主要有下面两种:
应用代码中文件访问方法主要有下面两种:
-
**相对路径**
:使用相对路径引用代码文件,以"../"访问上一级目录,以"./"访问当前目录,也可以省略不写
-
**相对路径**
:使用相对路径引用代码文件,以"../"访问上一级目录,以"./"访问当前目录,也可以省略不写
。
-
**绝对路径**
:使用当前模块根路径引用代码文件,比如:common/utils/utils。
-
**绝对路径**
:使用当前模块根路径引用代码文件,比如:common/utils/utils。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录