将 eclipse e4 应用程序的 window 设置为具有基本屏幕尺寸

Set the window of an eclipse e4 application to have based screen size

我按照下面的 link 打开 window 大小作为整个屏幕大小,它在 windows os 上工作正常,但 linux os小尺寸window正在开幕。 如何在 linux os 中打开大小为 window 的屏幕,就像 windows os?

Window Size link

另一种最大化 window 的方法是在生命周期 class(如果有)的 @ProcessAdditions 方法中执行以下操作:

@ProcessAdditions
public void processAdditions(final MApplication app, final EModelService modelService)
{
  MWindow window = (MWindow)modelService.find("id of top window", app);

  Monitor monitor = Display.getCurrent().getPrimaryMonitor();

  Rectangle monitorClientArea = monitor.getClientArea();

  window.setX(monitorClientArea.x);
  window.setY(monitorClientArea.y);
  window.setWidth(monitorClientArea.width);
  window.setHeight(monitorClientArea.height);
}