Eclipse RCP,为什么透视栏没有出现?
中调用了这样的方法
我在WorkbenchWindowAdvisor的postWindowOpen方法windowConfigurer.setShowPerspectiveBar(true);
但透视栏仍然没有显示出来
I called such method in WorkbenchWindowAdvisor's postWindowOpen method
windowConfigurer.setShowPerspectiveBar(true);
but perspective bar stills not show itself
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试从 preWindowOpen() 调用它。
Try calling it from preWindowOpen().
尝试清理工作区中正在运行的产品。这些类型的首选项保存并保留在工作台布局中,并从那里加载,而不是从您的代码加载。
Try to clean your workspace of your running product. These kind of preferences are saved and persisted in the workbenchlayout and are loaded from there instead from your code.