예제 #1
0
 public static bool HideWindow(OYS_Window window)
 {
     Instance?.Application.Dispatcher.Invoke(() =>
     {
         window.Hide();
     });
     return(true);
 }
예제 #2
0
 public static bool WaitForWindowClose(OYS_Window window, Int32 Timeout = Int32.MaxValue)
 {
     Instance?.Application.Dispatcher.Invoke(() =>
     {
         window.WaitForClose(Timeout);
     });
     return(true);
 }
예제 #3
0
 public static bool HideWindow(OYS_Window window) => UserInterfaceSingleton.HideWindow(window);
예제 #4
0
 public static bool ShowWindow(OYS_Window window) => UserInterfaceSingleton.ShowWindow(window);
예제 #5
0
 public static bool WaitForWindowClose(OYS_Window window) => UserInterfaceSingleton.WaitForWindowClose(window);
예제 #6
0
 public static bool WaitForWindowLoad(OYS_Window window) => UserInterfaceSingleton.WaitForWindowCreation(window);
예제 #7
0
 public static bool CloseWindow(OYS_Window window) => UserInterfaceSingleton.CloseWindow(window);