Ejemplo n.º 1
0
 public void showWarning(string title, string msg, int?sleep)
 {
     // Risolto il problema dello STAThread
     App.Current.Dispatcher.BeginInvoke(
         new Action(() =>
     {
         ShowTrayIcon trayIcon = new ShowTrayIcon();
         trayIcon.showWarning(title, msg, sleep);
     }
                    ));
 }
Ejemplo n.º 2
0
        public void showWarning(string title, string msg, int?sleep)
        {
            ShowTrayIcon trayIcon = new ShowTrayIcon();

            trayIcon.showWarning(title, msg, sleep);
        }