private bool IsFolderPathCorrect()
 {
     if (!haProj.IsProjectFolderPathExist(ProjPathTextBox.Text))
     {
         ShowWarningPopup("所选项目保存位置不存在,请重新选择!", ProjPathTextBox);
         return false;
     }
     if (WarningPopup.IsOpen)
         WarningPopup.IsOpen = false;
     return true;
 }