예제 #1
0
 /// <summary>
 /// Displays the formDevice
 /// </summary>
 public static void ShowFormDevice()
 {
     if (fd == null)
     {
         fd = new formDevice();
         fd.ShowFormDevice();
     }
 }
예제 #2
0
 /// <summary>
 /// Closes the SplashScreen
 /// </summary>
 public static void CloseFormDevice()
 {
     if (fd != null)
     {
         fd.CloseFormDevice();
         fd = null;
     }
 }