未验证 提交 ebc82415 编写于 作者: O openharmony_ci 提交者: Gitee

!18355 增加接口说明

Merge pull request !18355 from 田雨/master
......@@ -5,6 +5,8 @@
> **说明:**
>
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
> 该模块不支持在[UIAbility](./js-apis-app-ability-uiAbility.md)中使用。
## 导入模块
......
......@@ -5,6 +5,8 @@
> **说明:**
>
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
>
> 该模块不支持在[UIAbility](./js-apis-app-ability-uiAbility.md)中使用。
## 导入模块
......
......@@ -5,6 +5,8 @@
> **说明:**
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
> 该模块不支持在[UIAbility](./js-apis-app-ability-uiAbility.md)中使用。
## 导入模块
......
......@@ -33,7 +33,7 @@ Toggle(options: { type: ToggleType, isOn?: boolean })
| -------- | ---------------- |
| Checkbox | 提供单选框样式。<br>**说明:**<br/>[通用属性margin](ts-universal-attributes-size.md)的默认值为:<br>{<br>&nbsp;top: 12 px,<br>&nbsp;right: 12 px,<br>&nbsp;bottom: 12 px,<br>&nbsp;left: 12 px<br> } |
| Button | 提供状态按钮样式,如果子组件有文本设置,则相应的文本内容会显示在按钮内部。 |
| Switch | 提供开关样式。<br>**说明:**<br/>[通用属性margin](ts-universal-attributes-size.md)默认值为:<br>{<br/>&nbsp;top: 14 px,<br/>&nbsp;right:6 px,<br/>&nbsp;bottom: 6 px,<br/>&nbsp;left: 14 px<br/> } |
| Switch | 提供开关样式。<br>**说明:**<br/>[通用属性margin](ts-universal-attributes-size.md)默认值为:<br>{<br/>&nbsp;top: 6px,<br/>&nbsp;right: 14px,<br/>&nbsp;bottom: 6 px,<br/>&nbsp;left: 14 px<br/> } |
## 属性
......
......@@ -110,9 +110,10 @@ struct CustomDialogUser {
customStyle: false
})
// 在自定义组件即将析构销毁时将dialogControlle删除和置空
aboutToDisappear() {
delete this.dialogController,
this.dialogController = undefined
delete this.dialogController, // 删除dialogController
this.dialogController = undefined // 将dialogController置空
}
onCancel() {
......
......@@ -28,7 +28,7 @@ Button('click for Menu')
## 创建自定义样式的菜单
当默认样式不满足开发需求时,可使用\@CustomBuilder自定义菜单内容。可通过bindContextMenu接口进行菜单的自定义。
当默认样式不满足开发需求时,可使用\@CustomBuilder自定义菜单内容。可通过bindMenu接口进行菜单的自定义。
### \@Builder开发菜单内的内容
......@@ -70,7 +70,7 @@ MyMenu(){
startIcon: $r("app.media.view_list_filled"),
content: "菜单选项",
endIcon: $r("app.media.arrow_right_filled"),
builder: this.SubMenu.bind(this)\
builder: this.SubMenu.bind(this)
})
}
MenuItem({
......@@ -101,7 +101,7 @@ Button('click for Menu')
通过bindContextMenu接口进行菜单的自定义及菜单弹出的触发方式:右键或长按。使用bindContextMenu弹出的菜单项是在独立子窗口内的,可显示在应用窗口外部。
- [@Builder开发菜单内的内容](#builder开发菜单内的内容)与上文写法相同。
- @Builder开发菜单内的内容与上文写法相同。
- 确认菜单的弹出方式,使用bindContextMenu属性绑定组件。示例中为右键弹出菜单。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册