internal static InfoChoiceMonitor Instance()
 {
     if (_instance == null)
     {
         _instance = new InfoChoiceMonitor();
     }
     return(_instance);
 }
 void MyWindow_Closed(object sender, System.EventArgs e)
 {
     _instance = null;
 }