Eclipse rcp:欢迎页面如何每次都全屏显示?
我想修复工作台并每次全屏显示欢迎页面。
但是当我在类透视图中调用方法 layout.setfixed(true)
时,welcom 页面无法全屏。
I want to fixed the workbench and appear the weclome page everytime full screen.
But when I call the method layout.setfixed(true)
in the Class Perspective the welcom page can't be full screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要全屏打开,可以使用
WorkbenchWindowAdvisor
类的postWindowOpen()
方法中的以下代码To open in full screen, following code in
postWindowOpen()
method ofWorkbenchWindowAdvisor
class can be used您可以在 WorkbenchWindowAdvisor 的 preWindowOpen 方法中执行此操作:
这将在应用程序启动时每次以全屏大小显示欢迎页面。
You could do this in the preWindowOpen-method of the WorkbenchWindowAdvisor:
This will show the welcome page everytime in full screen size when the application is started.