如何让Wizard 在最后一页显示“完成”按钮

it2024-10-26  18

public class ScanWizard extends Wizard {

  @Override public boolean canFinish() {  //只有到最后一页时才可以“完成”可用  if (this.getContainer().getCurrentPage() instanceof ChooseKeywordPattern) //ChooseKeywordPattern为最后一个页面   return true;  else   return false; }

 }

 

只需要重载 canFinish()方法,判断是否是最后一个页面即可。

转载于:https://www.cnblogs.com/wuhenke/archive/2012/03/07/2384131.html

最新回复(0)