Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipse RCP には setMinimumSize オプションがありますが、setMaximumSize はありません。そのタイプの関数を実装する方法はありますか?
最大値を設定する方法はありません。サイズをアプリに。 回避策は次のとおりです 。ApplicationWorkbenchWindowAdvisorクラスのpreWindowOpen()メソッドで、最大値を設定configurer.setInitialSize()して関数をブロックしmaximize、ボタンを非表示にすることができますconfigurer.setShellStyle(SWT.MIN | SWT.CLOSE);
ApplicationWorkbenchWindowAdvisor
preWindowOpen()
configurer.setInitialSize()
maximize
configurer.setShellStyle(SWT.MIN | SWT.CLOSE);