gpt4 book ai didi

c# - 将帮助文件连接到应用程序

转载 作者:行者123 更新时间:2023-11-30 13:34:08 25 4
gpt4 key购买 nike

我想将帮助文件 (.chm) 连接到我的 Windows 应用程序。我该怎么做?谢谢。

最佳答案

试试这个

string fbPath = Application.StartupPath;
string fname = "help.chm";
string filename = fbPath + @"\" + fname;
FileInfo fi = new FileInfo(filename);
if (fi.Exists)
{
Help.ShowHelp(this, filename, HelpNavigator.Find, "");
}
else
{
MessageBox.Show("Help file Is in Progress.. ",MessageBoxButtons.OK, MessageBoxIcon.Information);

}

关于c# - 将帮助文件连接到应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4106048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com