IPageLayout下添加keyevent切换ViewPart? (第二部分)
上一个问题:(谢谢托尼·马德森回答我)
添加keyevent来切换IPageLayout下的ViewPart
此外,
如果我有多个“view1”,如何为它们分配不同的快捷键?
是否可以为“view1”函数调用分配快捷键?谢谢
Previous question: (Thank you Tonny Madsen to answer me)
Add keyevent to switch ViewPart under IPageLayout
Moreover,
if I have more than one "view1", how can I assign the different short key for both of them??
And is it possible to assign the short key for the "view1" function call?? thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您已经使用
allowMultiple = true
定义了您的视图。据我所知,您无法将辅助 ID 添加到使用 org.eclipse.ui.views.showView 命令指定的视图 ID。您可以在 org.eclipse.ui.handlers.ShowViewHandler 中检查自己。
不过,一种可能的解决方案是定义您自己的命令和处理程序。基于标准版本,您应该很容易做到。
I suppose you have defined your view with
allowMultiple = true
.To my knowledge, you cannot add a secondary ID to the view ID specified with the
org.eclipse.ui.views.showView
command. You can check yourself inorg.eclipse.ui.handlers.ShowViewHandler
.One possible solution though, is to define your own command and handler. Based on the standard version, it should be pretty easy for you to do.