Esempio n. 1
0
 public static void DisplayNotification(string msg)
 {
     try
     {
         if (trayIcon != null)
         {
             trayIcon.DisplayNotification(msg);
         }
     }
     catch (Exception e)
     {
         Log.Exception(e, "Exception in DisplayNotification");
     }
 }