I have created a wizard in swt/jface. and i would like to remove the wizard container bar. I checked the documentation of the wizard page but couldn't find anything. Is their is a way to do this.Here a pic to explain better

enter image description here

So i need to remove this red rectangaled part

有帮助吗?

解决方案

The first thing I'd try would be to try returning null from the methods that populate that area of the wizard UI.

If that doesn't work, you can always look into the Eclipse implementation of Wizard and WizardPage to see what draws that area and implement your own version that draws what you want - IWizard and IWizardPage are just interfaces after all. I've done something similar (though this was a few years ago) for implementing a much more customized wizard that ended up containing a GEF editor inside it as well.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top