private ResearcherView GetDialog()
 {
     if (_view != null)
     {
         return(_view);
     }
     _view         = new ResearcherView();
     _view.Closed += view_Closed;
     return(_view);
 }
 void view_Closed(object sender, EventArgs e)
 {
     _view = null;
 }