如何将菜单项添加到 devexpress 树列表上的默认右键单击
我有一个 DevExpress(版本 9.2)TreeList,默认情况下显示一个菜单,其中包含升序/降序排序、列选择器和右键单击树标题时最适合的菜单。
我如何向这个默认菜单添加更多选择?
I have a DevExpress (version 9.2) TreeList that by default displays a menu containing sort ascending/descending, column chooser, and best fit when you right-click on the header of the tree.
How would I add more choices to this default menu?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要添加到默认菜单,您需要使用 ShowTreeListMenu 操作侦听器并在其中添加行。
第一个添加调用函数
ExpandNode()
,第二个调用CollapseAll()
。To add to the default menu you need to use the ShowTreeListMenu action listener and add the rows in there.
The first addition calls the function
ExpandNode()
and the second callsCollapseAll()
.或者将菜单项添加到表单加载事件处理程序中。根据需要添加菜单单击处理程序。
Or do the menu item add in the form load event handler. Add a menu click handler as needed.