在Eclipse中一个Wizard=WizardDialog+Wizard+WizardPage,在这三者中,可以把前者看成后者的容器(container),看看这些类里面的代码就知道,Eclipse自己也是这么认为的,而我们最终看到的东西是WizardPage,在一个Wizard中虽然我们看到的是每一个WizardPage都是在点击next的时候一个一个显示的,但是他们的创建却是在Wizard初始化的时候一起被实例化的,因此这个给我们制造联动效果的WizardPage(也就是后一个WizardPage的内容是根据前面的WizardPage的操作动态生成的)造成了麻烦,不过这个问题也很好解决,这里(http://www.cnblogs.com/bjzhanghao/archive/2007/06/07/775314.html)已经给出了答案.即复写Wizard的createPageControls()方法,给一个空实现即可.
不过还有另外一个问题没有解决,就是如果我现在一个Wizard中有a,b两个WizardPage,目前我停留在b WizardPage中,我现在点击back回到a WizardPage中,然后对内容做了修改,此次我希望再回到b WizardPage的时候,里面的内容也同时跟着发生改变,但是仅仅是复写Wizard的createPageControls()方法是无法实现,我们通过查看源代码,发现在org.eclipse.jface.wizard.WizardDialog.updateForPage(IWizardPage page)中:
- private void updateForPage(IWizardPage page) {
- // ensure this page belongs to the current wizard
- if (wizard != page.getWizard()) {
- setWizard(page.getWizard());
- }
- // ensure that page control has been created
- // (this allows lazy page control creation)
- if (page.getControl() == null) {
- page.createControl(pageContainer);
- // the page is responsible for ensuring the created control is accessable
- // via getControl.
- Assert.isNotNull(page.getControl());
- // ensure the dialog is large enough for this page
- updateSize(page);
- }
- // make the new page visible
- IWizardPage oldPage = currentPage;
- currentPage = page;
- currentPage.setVisible(true);
- if (oldPage != null) {
- oldPage.setVisible(false);
- }
- // update the dialog controls
- update();
- }
也就是在调用WizardPage的createControl()方法之前要做一个判断page.getControl() == null,因此我们只要将想办法在调转到某个WizardPage的时候,将其control设置为null就可以了.于是我们在a WizardPage中引起b WizardPage的内容发生改变的方法中添加如下代码:
- // 对参数页必须重绘
- IWizardPage page = getNextPage();
- if (page.getControl() != null)
- page.dispose();
然后复写b WizardPage的dispose方法:
- public void dispose() {
- super.dispose();
- setControl(null);
- }
这样我们就大功告成了.
1 楼 luoww1 2013-09-10 11:39