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);