Ejemplo n.º 1
0
 /// <summary>
 /// Close all the notifications
 /// </summary>
 public static void ForceClose()
 {
     YamuiNotification.CloseEverything();
     foreach (var yamuiInput in _openedMessage)
     {
         if (yamuiInput != null)
         {
             yamuiInput.Tag = true;
             yamuiInput.Close();
             yamuiInput.Dispose();
         }
     }
 }