JFace的向导中如何去掉可选的进度区域
在向导的页面中分四个区,标题区、内容区,可选的进度区,按钮栏。我想去掉可选的进度区,调用IWizard的setNeedsProgressMonitor(false)方法,可是不起做用。
我的环境:eclipse3.2,swt-designer5
调用代码:
TestWizard wizard=new TestWizard();
wizard.setNeedsProgressMonitor(false);
WizardDialog dialog=new WizardDialog(this,wizard);
dialog.open();