修改帮助文件为本地文件

This commit is contained in:
椰子 2019-09-16 21:15:40 +08:00
parent 1139170b1d
commit 46dc090e2c
3 changed files with 16 additions and 2 deletions

View File

@ -154,7 +154,14 @@ namespace NJCIT
private void toolStripLabel_help_Click(object sender, EventArgs e) private void toolStripLabel_help_Click(object sender, EventArgs e)
{ {
System.Diagnostics.Process.Start("http://xueye.io/njcit-lan-help.html"); try
{
System.Diagnostics.Process.Start("help.html");
}
catch (Exception ee)
{
MessageBox.Show(ee.Message, "错误提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
} }
} }

View File

@ -243,7 +243,14 @@ namespace NJCIT
private void toolStripButton_help_Click(object sender, EventArgs e) private void toolStripButton_help_Click(object sender, EventArgs e)
{ {
System.Diagnostics.Process.Start("http://xueye.io/njcit-lan-help.html"); try
{
System.Diagnostics.Process.Start("help.html");
}
catch (Exception ee)
{
MessageBox.Show(ee.Message, "错误提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
} }
} }

View File