public static CallOutWindow GetInstance()
 {
     if (null == _instance)
     {
         _instance = new CallOutWindow();
     }
     return(_instance);
 }
 public void Window_Close(object sender, EventArgs e)
 {
     _instance = null;
 }