예제 #1
0
 public static void hiden()
 {
     if (iw == null)
     {
         iw = new IsWorking();
     }
     iw.Hide();
     iw.image.stop();
 }
예제 #2
0
 public static void show()
 {
     if (iw == null)
     {
         iw = new IsWorking();
     }
     iw.Show();
     iw.image.start();
 }