我们在HarmonyOS开发中,如何实现应用的自定义对话框?

阅读 540
1 个回答

自定义对话框可以用于显示警告、确认或其他重要信息。

@Entry
@Component
struct CustomDialogApp {
  showCustomDialog() {
    Dialog.show({
      title: 'Custom Dialog',
      message: 'This is a custom dialog message.',
      buttons: [
        { text: 'Cancel', onClick: () => console.log('Cancel clicked') },
        { text: 'OK', onClick: () => console.log('OK clicked') }
      ]
    });
  }

  build() {
    return (
      <UI.Page>
        <UI.Label text="Custom Dialog" />
        <UI.Button text="Show Dialog" onClick={() => this.showCustomDialog()} />
      </UI.Page>
    );
  }
}

本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题