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