コード例 #1
0
ファイル: NotificationForm.cs プロジェクト: schmich/ephemeral
 public static void Show(string text, TimeSpan minimumLifeTime)
 {
     NotificationForm notification = new NotificationForm(text, minimumLifeTime);
     notification.Show();
 }
コード例 #2
0
ファイル: NotificationForm.cs プロジェクト: schmich/ephemeral
 public static void Show(string text)
 {
     NotificationForm notification = new NotificationForm(text);
     notification.Show();
 }