如何限制RCP app的window大小调整?
How to restrict the window of RCP app from resizing?
我想限制 window 调整 RCP 应用程序的大小。
所以在 prewindowopen
of ApplicationWorkbenchWindowAdvisor
class 我试过
IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
configurer.setShellStyle(SWT.CLOSE | SWT.MIN | SWT.MODELESS | SWT.BORDER | SWT.TITLE);
不过好像对window没有什么影响。当我在对话框中尝试同样的事情时,这似乎有效。任何关于这方面的线索都会很有帮助。
这看起来像是 Eclipse 错误 432501,它表示 setShellStyle
在 Eclipse 4 中被忽略。目前没有修复此问题。
我想限制 window 调整 RCP 应用程序的大小。
所以在 prewindowopen
of ApplicationWorkbenchWindowAdvisor
class 我试过
IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
configurer.setShellStyle(SWT.CLOSE | SWT.MIN | SWT.MODELESS | SWT.BORDER | SWT.TITLE);
不过好像对window没有什么影响。当我在对话框中尝试同样的事情时,这似乎有效。任何关于这方面的线索都会很有帮助。
这看起来像是 Eclipse 错误 432501,它表示 setShellStyle
在 Eclipse 4 中被忽略。目前没有修复此问题。