示例#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();
 }