Set Size of JFace Wizard?

It turns out that the Wizard is the size of your largest WizardPage.

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 wizard = new MyCustomWizard(); WizardDialog wizardDialog = new WizardDialog(PlatformUI.getWorkbench().

GetActiveWorkbenchWindow().getShell(), wizard); wizardDialog. SetPageSize(WIDTH, HEIGHT); // Could also use wizardDialog. SetMinimumPageSize(WIDTH, HEIGHT) if that's more appropriate.

This approach wizardDialog. SetPageSize(WIDTH, HEIGHT); For some reasons does not change the width of the dialog. Any thoughts?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions