/// <summary>
 /// 保存配置文件
 /// </summary>
 private void SaveSetting()
 {
     SettingHelper settingHelper = new SettingHelper(this.txtCompany.Text, this.txtProject.Text, this.txtAuthor.Text, this.txtDesign.Text, this.txtOutput.Text, this.CurrentDb, this.chkOverwrite.Checked);
     settingHelper.SaveSetting();
 }