Пример #1
0
 private void ShowNotifyWindow()
 {
     if (notifyForm == null && ReadNotificationSettings().ShowNotifyWindow)
     {
         notifyForm = new NewPlanAppointForm();
         notifyForm.Show();
         notifyForm.FormClosed += NotifyForm_FormClosed;
     }
 }
Пример #2
0
 private void NotifyForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     notifyForm = null;
 }