打开CHM-Help C#的子页面

时间:2012-03-28 09:06:29

标签: c# chm

我想打开CHM的特定子页面 - 我的程序的帮助 我从未在c#中执行此操作,因此我需要知道如何打开CHM的特定页面。
一个简短的例子就是完美的。

1 个答案:

答案 0 :(得分:2)

您可以使用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);
}