Eclipse rcp:欢迎页面如何每次都全屏显示?

发布于 2024-12-21 13:21:41 字数 101 浏览 0 评论 0原文

我想修复工作台并每次全屏显示欢迎页面。

但是当我在类透视图中调用方法 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋风の叶未落 2024-12-28 13:21:41

要全屏打开,可以使用 WorkbenchWindowAdvisor 类的 postWindowOpen() 方法中的以下代码

getWindowConfigurer().getWindow().getShell().setMaximized( true );

To open in full screen, following code in postWindowOpen() method of WorkbenchWindowAdvisor class can be used

getWindowConfigurer().getWindow().getShell().setMaximized( true );
那片花海 2024-12-28 13:21:41

您可以在 WorkbenchWindowAdvisor 的 preWindowOpen 方法中执行此操作:

 public class ApplicationWorkbenchWindowAdvisor extends WorkbenchWindowAdvisor {
     ...
     public void preWindowOpen() {
        ...
        PlatformUI.getPreferenceStore()
              .setValue(IWorkbenchPreferenceConstants.SHOW_INTRO, true);
     }

这将在应用程序启动时每次以全屏大小显示欢迎页面。

You could do this in the preWindowOpen-method of the WorkbenchWindowAdvisor:

 public class ApplicationWorkbenchWindowAdvisor extends WorkbenchWindowAdvisor {
     ...
     public void preWindowOpen() {
        ...
        PlatformUI.getPreferenceStore()
              .setValue(IWorkbenchPreferenceConstants.SHOW_INTRO, true);
     }

This will show the welcome page everytime in full screen size when the application is started.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文