Foxtable(狐表)用户栏目专家坐堂 → [求助]代码添加右键快捷菜单


  共有4090人关注过本帖平板打印复制链接

主题:[求助]代码添加右键快捷菜单

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110334 积分:561518 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2020/2/24 14:57:00 [只看该作者]

参考

If e.HitType = HitTypeEnum.Cell  Then
    Dim mnu1 As RibbonMenu.ContextMenu = ContextMenus("Cell")
    Dim a As new C1.Win.C1Command.C1Command
    a.name = "test"
    a.text = "test"
    Dim b As new C1.Win.C1Command.C1CommandLink(a)
    Dim c As new RibbonMenu.ContextCommand(b)
    If mnu1.items.Contains("test") = False Then
        mnu1.items.add(c)
    End If
    e.ContextMenu = ContextMenus("Cell") '显示快捷菜单"菜单A"
End  If

点击执行代码只能到全局菜单事件里处理:http://www.foxtable.com/webhelp/topics/1129.htm

 回到顶部