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