public void closeGloryVictoryWindowPopup() { if (this.gloryVictoryWindow != null) { this.gloryVictoryWindow.Close(); this.gloryVictoryWindow = null; } }
public void openGloryVictoryPopup() { this.closeGloryVictoryWindowPopup(); this.gloryVictoryWindow = new GloryVictoryWindow(); this.gloryVictoryWindow.init(this.ParentForm); this.gloryVictoryWindow.Show(this.ParentForm); }