From bdc39e888e4d29c3cbd62418c0843b8fce4338a1 Mon Sep 17 00:00:00 2001 From: shanshurong Date: Mon, 10 Oct 2022 10:53:39 +0800 Subject: [PATCH] fix codex Signed-off-by: shanshurong --- .../reference/arkui-ts/ts-universal-attributes-popup.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md index 2240babb6b..64d51debdc 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-popup.md @@ -68,6 +68,7 @@ struct PopupExample { .bindPopup(this.noHandlePopup, { message: 'content1 content1', placementOnTop: false, + showInSubWindow:true, onStateChange: (e) => { console.info(e.isVisible.toString()) if (!e.isVisible) { @@ -84,6 +85,7 @@ struct PopupExample { .bindPopup(this.handlePopup, { message: 'content2 content2', placementOnTop: true, + showInSubWindow:false, primaryButton: { value: 'ok', action: () => { @@ -107,6 +109,7 @@ struct PopupExample { maskColor: 0x33000000, popupColor: Color.White, enableArrow: true, + showInSubWindow:false, onStateChange: (e) => { if (!e.isVisible) { this.customPopup = false -- GitLab