Esempio n. 1
0
 public static void Show(string text, TimeSpan minimumLifeTime)
 {
     NotificationForm notification = new NotificationForm(text, minimumLifeTime);
     notification.Show();
 }
Esempio n. 2
0
 public static void Show(string text)
 {
     NotificationForm notification = new NotificationForm(text);
     notification.Show();
 }