Disposable wait cursor
상속: IDisposable
예제 #1
0
 public static void Show()
 {
     if (Singleton == null)
     {
         Singleton = new WaitCursor();
     }
 }
예제 #2
0
 public static void Hide()
 {
     if (Singleton != null)
     {
         Singleton.Dispose();
         Singleton = null;
     }
 }