public EditConfigUserControl(ConfigFileEditorForm parentForm)
 {
     _ParentForm = parentForm;
     InitializeComponent();
     TxtLocalFolderPath.DragEnter += new DragEventHandler(Utils.TextBoxDragEnter);
     TxtLocalFolderPath.DragDrop  += new DragEventHandler(Utils.TextBoxOneDirDragDrop);
     _SetHostTips(true);
 }
 public EditConfigUserControl(ConfigFileEditorForm parentForm, OneConfigJsonVO vo) : this(parentForm)
 {
     RefreshUI(vo);
 }