正在打开CHM帮助C#的子页面

本文关键字:帮助 CHM | 更新日期: 2023-09-27 18:29:26

我想打开程序的CHM-帮助的特定子页面
我从来没有在c#中这样做过,所以我需要知道如何打开CHM的特定页面
举个简短的例子就是完美的。

正在打开CHM帮助C#的子页面

您可以使用System.Windows.Forms.Help.ShowHelp(Control, String, HelpNavigator)

来自MSDN

// Open the Help file for the Character Map topic and 
// display the Index page.
private void Button2_Click(System.Object sender, System.EventArgs e)
{
    Help.ShowHelp(TextBox1, "file://c:''charmap.chm", 
        HelpNavigator.Index);
}