设置 JFace 向导的大小
我正在构建 Eclipse RCP 应用程序,但在设置 JFace 向导的大小时遇到问题。
I am building an Eclipse RCP application and am having trouble on settings the size of a JFace Wizard.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,让 Eclipse 为您计算大小通常是个好主意。但是,如果您确实想要设置向导的大小,可以通过设置用于打开向导的 WizardDialog 的大小来完成。例如:
Yeah, it is generally a good idea to let Eclipse work out the size for you. However, if you really want to set the size of the wizard, you can do it by setting the size of the WizardDialog which you are using to open your wizard. For example:
事实证明,Wizard 的大小就是你最大的WizardPage 的大小。
It turns out that the Wizard is the size of your largest WizardPage.
要设置对话框的大小,请
禁用对话框可调整大小的功能,请将 SWT.RESIZE 位保留在自己的 WizardDialog 实现中:
To set the size of the dialog, it's
To disable that the dialog is resizable, leave the SWT.RESIZE bit in an own WizardDialog implementation: