Пример #1
0
  public void onExitAction() {
    if (centerPanel != null) {
      ((IDiglogPanel) centerPanel).destroy();
    }

    this.centerPanel = null; // 销毁
    this.setVisible(false);
    this.dispose();
  }
Пример #2
0
 public void hide() {
   if (this.centerPanel != null) {
     ((IDiglogPanel) centerPanel).destroy();
   }
   super.hide();
 }