#鸿蒙通关秘籍#如何实现带按钮的提示气泡?

HarmonyOS
19h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
系统小神童

带按钮的提示气泡可以通过primaryButtonsecondaryButton两个属性实现,允许在气泡中添加两个按钮,分别设定它们的文本和点击行为:

@Entry
@Component
struct PopupExample22 {
  @State handlePopup: boolean = false

  build() {
    Column() {
      Button('PopupOptions').margin({ top: 200 })
        .onClick(() => {
          this.handlePopup = !this.handlePopup
        })
        .bindPopup(this.handlePopup, {
          message: 'This is a popup with PopupOptions',
          primaryButton: {
            value: 'Confirm',
            action: () => {
              this.handlePopup = !this.handlePopup
              console.info('confirm Button click')
            }
          },
          secondaryButton: {
            value: 'Cancel',
            action: () => {
              this.handlePopup = !this.handlePopup
            }
          },
          onStateChange: (e) => {
            if (!e.isVisible) {
              this.handlePopup = false
            }
          }
        })
    }.width('100%').padding({ top: 5 })
  }
}

按钮的action参数定义了点击后要执行的动作。

分享
微博
QQ
微信
回复
17h前
相关问题
如何实现刻度进度条?
601浏览 • 1回复 待解决
如何实现图片进度条
762浏览 • 1回复 待解决
如何实现按钮点击效果?
392浏览 • 2回复 待解决