Example #1
0
 public void OpenProcessWindow(ToDoNote note)
 {
     EnqueueCmd(() =>
     {
         convertWindow = ToDoListNoteConvertWindow.Open(this, note);
         convertWindow.Show();
     });
 }
Example #2
0
 protected override void OnHide()
 {
     base.OnHide();
     if (convertWindow)
     {
         convertWindow.Close();
         convertWindow = null;
     }
 }