Beispiel #1
0
 public MuGuiManager()
 {
     LastMbMessage = string.Empty;
     zModalWindows = new List<Window>();
     zDoGetWindows = true;
     zWindows = new List<Window>();
     zLastCursorOwner = null;
     zWindowCursorOwner = null;
     LastMessageBoxReturn = MessageBoxReturn.Nothing;
 }
Beispiel #2
0
 public MuGuiManager()
 {
     LastMbMessage        = string.Empty;
     zModalWindows        = new List <Window>();
     zDoGetWindows        = true;
     zWindows             = new List <Window>();
     zLastCursorOwner     = null;
     zWindowCursorOwner   = null;
     LastMessageBoxReturn = MessageBoxReturn.Nothing;
 }
Beispiel #3
0
 public void Clear()
 {
     LastMessageBoxReturn = MessageBoxReturn.Nothing;
     LastMbMessage        = string.Empty;
     while (zWindows.Count > 0)
     {
         zWindows.Last().Destroy();
     }
     while (zModalWindows.Count > 0)
     {
         zModalWindows.Last().Destroy();
     }
 }
Beispiel #4
0
 public bool CompareMBresult(MessageBoxReturn result, string msg) => result == LastMessageBoxReturn && msg == LastMbMessage;
Beispiel #5
0
 public void Clear()
 {
     LastMessageBoxReturn = MessageBoxReturn.Nothing;
     LastMbMessage = string.Empty;
     while (zWindows.Count > 0)
         zWindows.Last().Destroy();
     while (zModalWindows.Count > 0)
         zModalWindows.Last().Destroy();
 }
Beispiel #6
0
 public bool CompareMBresult(MessageBoxReturn result, string msg) => result == LastMessageBoxReturn && msg == LastMbMessage;