예제 #1
0
 private void HidePopup()
 {
     if (popup != null)
     {
         Screen.CloseWindow(popup);
         popup = null;
     }
 }
예제 #2
0
파일: Window.cs 프로젝트: Jebeli/Tiles
 public void CloseWindow()
 {
     Screen?.CloseWindow(this);
 }
예제 #3
0
파일: FileGadget.cs 프로젝트: Jebeli/Tiles
 public void Cancel()
 {
     Screen?.CloseWindow(this.Window);
 }
예제 #4
0
파일: FileGadget.cs 프로젝트: Jebeli/Tiles
 public void Ok()
 {
     Screen?.CloseWindow(this.Window);
     OnOkSelected();
 }