当前位置:网站首页>开源一夏|ArkUI如何自定义弹窗(eTS)
开源一夏|ArkUI如何自定义弹窗(eTS)
2022-08-04 10:05:00 【InfoQ】
import CustomDialogExample from './customdialog'
@Entry
@Component
struct Index {
// 方式一:使用箭头函数
onAccept = () => {
console.info('确定')
this.dialogController.close();
}
dialogController: CustomDialogController = new CustomDialogController({
builder: CustomDialogExample({ cancel: this.onCancel, confirm: this.onAccept }),
alignment: DialogAlignment.Center,
cancel: () => {
console.log("cancel") // 点击蒙层的回调
},
autoCancel: true, // 允许点击蒙层关闭弹窗
customStyle: false // 使用自定义样式
})
onCancel() {
console.info('取消')
}
build() {
Column({}) {
Button(' 自定义弹窗')
.onClick(() => {
//打开弹窗
this.dialogController.open();
})
}.width("100%").height("100%").alignItems(HorizontalAlign.Center).justifyContent(FlexAlign.Center)
}
}
/*
* Copyright (c) 2021 JianGuo Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//通过CustomDialogController类显示自定义弹窗。
@CustomDialog
struct CustomDialogExample {
controller: CustomDialogController
cancel: () => void
confirm: () => void
build() {
Flex({ justifyContent: FlexAlign.Center ,alignItems:ItemAlign.Center,alignContent:FlexAlign.Center}) {
Button('取消').fontSize(36)
.onClick(() => {
//方式二:关闭弹窗
this.controller.close()
this.cancel()
}).backgroundColor(0xffffff).fontColor(Color.Black)
Button('确定').fontSize(36)
.onClick(() => {
// this.controller.close()
this.confirm()
}).backgroundColor(0xffffff).fontColor(Color.Red)
}.margin({ bottom: 10 }).width("100%").height(200)
}
}
export default CustomDialogExample
CustomDialogController
open()
close()
- open:打开对话框,如果对话框已经打开,则再次打开无效。
- close:关闭对话框,如果对话框已经关闭,则再次关闭无效。
- value:创建控制器需要的配置参数,
CustomDialogControllerOptions
- builder:创建自定义弹窗的构造器。
- cancel:点击蒙层的事件回调。
- autoCancel:是否允许点击遮障层退出。
- alignment:弹窗在竖直方向上的对齐方式。
- offset:弹窗相对
alignment
所在位置的偏移量。
- customStyle:弹窗容器样式是否自定义。
declare interface CustomDialogControllerOptions {
/**
* Custom builder function.
* @since 7
*/
builder: any;
/**
* Defines the cancel function.
* @since 7
*/
cancel?: () => void;
/**
* Defines if use auto cancel when click on the outside of the dialog.
* @since 7
*/
autoCancel?: boolean;
/**
* Defines the dialog alignment of the screen.
* @since 7
*/
alignment?: DialogAlignment;
/**
* Defines the dialog offset.
* @since 7
*/
offset?: Offset;
/**
* Defines if use costom style.
* @since 7
*/
customStyle?: boolean;
/**
* Grid count of dialog.
* @since 8
*/
gridCount?: number;
}
边栏推荐
- GBsae 8 c database using an error, how to do?
- Libtomcrypt AES 加密及解密
- 双指针方法
- Person.class.getInterfaces() 注意使用方法
- 高级转录组分析和R数据可视化火热报名中(2022.10)
- MySQL:面试问的范式设计
- 【c】操作符详解(二)
- leetcode二叉树系列(二)
- Shell编程的条件语句
- Detailed explanation of NAT/NAPT address translation (internal and external network communication) technology [Huawei eNSP]
猜你喜欢
Detailed Explanation of Addresses Delivered by DHCP on Routing/Layer 3 Switches [Huawei eNSP]
MindSpore:model.train中的dataset_sink_mode该如何理解?
usb设备复合g_webcam摄像头码流传输功能以及g_serial串口功能
张朝阳对话俞敏洪:谈宇宙、谈焦虑、谈创业、谈退休、谈人生
HCIP 第十七天
罗克韦尔AB PLC RSLogix5000中定时器指令使用方法介绍
Anton Paar Anton Paar Density Meter Hydrometer Repair DMA35 Performance Parameters
MindSpore:mirrorpad算子速度过慢的问题
Win11怎么进行左右键对调?
物体颜色的来源
随机推荐
[代码阅读] CycleGAN: Unpaired Image-To-Image Translation Using Cycle-Consistent Adversarial Networks
Win7C盘不能扩大怎么办?Win7C盘扩展卷不能点怎么解决
有了这篇 Kubernetes 的介绍,它的原理秒懂!
菲沃泰科创板上市:市值123亿 宗坚赵静艳夫妇身价76亿
【C补充】指针相关知识点收集01
iMeta | 百度认证完成,搜索“iMeta”直达出版社主页和投稿链接
MySQL核心SQL:结构化查询语句SQL、库操作、表操作、CRUD
OAK-FFC-4P全网首次测试
sqlilabs less-38~39
如何直击固定资产管理的难题?
Techwiz OLED:OLED器件的发光效率
暴力破解ssh/rdp/mysql/smb服务
【C补充】指向指针或函数的指针
为企业数字化转型提供服务_数字赋能企业转型
rk3399-339 usb设备复合 总体流程
DOM简述
leetcode动态规划系列(求路径篇)
暴力破解-破解 Apache BASIC 认证
关于技术学习的6个观点
v-model原理,在“radio”、“checkbox”、“select”、修饰符