private void label20_Click(object sender, EventArgs e)
{
string path = String.Empty;
path = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase + @"HelpDoc\帮助文档.docx";
try
{
System.Diagnostics.Process.Start(path); //打开此文件。
}
catch
{ MessageBox.Show("请检查docx格式帮助文件是否存在"); }
}
{
string path = String.Empty;
path = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase + @"HelpDoc\帮助文档.docx";
try
{
System.Diagnostics.Process.Start(path); //打开此文件。
}
catch
{ MessageBox.Show("请检查docx格式帮助文件是否存在"); }
}