在 CreateConnection GEF 上创建菜单
我想在创建并完成两个 editPart 之间的连接时创建一个上下文菜单, 因为我想为连接选择一些功能。 如何在不单击右键的情况下在 Editpart 中创建上下文菜单或弹出菜单?
I want to create a context menu when I create and finish the Connection between two editParts,
because I want to select some feature for the connection.
How can I create a contextMenu or a popup menu in an Editpart without clicking the right button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
Connection
实现的setTargetAnchor(ConnectionAnchor)
方法中执行此操作,例如:You could do it in the
setTargetAnchor(ConnectionAnchor)
method of yourConnection
implementation, e.g.: