예제 #1
0
 public void closeGloryVictoryWindowPopup()
 {
     if (this.gloryVictoryWindow != null)
     {
         this.gloryVictoryWindow.Close();
         this.gloryVictoryWindow = null;
     }
 }
예제 #2
0
 public void openGloryVictoryPopup()
 {
     this.closeGloryVictoryWindowPopup();
     this.gloryVictoryWindow = new GloryVictoryWindow();
     this.gloryVictoryWindow.init(this.ParentForm);
     this.gloryVictoryWindow.Show(this.ParentForm);
 }