[文章]HarmonyOS/OpenHarmony应用开发-bindContextMenu绑定菜单选项

阅读量0
0
0

在页面范围内关闭通过bindContextMenu属性绑定的菜单。
(api8开始支持)

bindContextMenu:
给组件绑定菜单,触发方式为长按或者右键点击,弹出菜单项需要自定义。
HarmonyOS/OpenHarmony应用开发-bindContextMenu绑定菜单选项-开源基础软件社区
示例:
HarmonyOS/OpenHarmony应用开发-bindContextMenu绑定菜单选项-开源基础软件社区HarmonyOS/OpenHarmony应用开发-bindContextMenu绑定菜单选项-开源基础软件社区
代码

@Entry
@Component
struct Index {
  @Builder MenuBuilder() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Button('Text Menu1')
      Divider().strokeWidth(2).margin(5).color(Color.Grey).opacity(0.2)
      Button('Text Menu2')
      Divider().strokeWidth(2).margin(5).color(Color.Grey).opacity(0.2)
      Button('Text Menu3')
    }
    .width(200)
    .height(160)
  }

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Column() {
        Text("LongPress show ContextMenu")
          .fontSize(20)
          .width('100%')
          .height(300)
          .backgroundColor(Color.Orange)
          .textAlign(TextAlign.Center)
      }
      .bindContextMenu(this.MenuBuilder, ResponseType.LongPress)
      .onDragStart(()=>{
        // 拖拽时关闭菜单
        ContextMenu.close()
      })
    }
    .width('100%')
    .height('100%')
  }
}

附件【*附件:HarmonyOSOpenHarmony应用开发-bindContextMenu绑定菜单选项.docx

回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友