How to open CHM file on specified node TOC (.NET)

后端 未结 3 782
野性不改
野性不改 2021-01-12 14:28

Hi I need implement context help inside my .NET application. I have .chm file and I\'m looking for possibility to open it in standard viewer and hightlight required topic of

3条回答
  •  借酒劲吻你
    2021-01-12 14:47

    Thanks Jeff I've found solution.

    Below method doing that - maybe somebody finds it useful. Thanks for help!

    public static void ShowHelpByKeyword(Control sourceControl, string helpFile, string parameter) {
       Help.ShowHelp(sourceControl, helpFile, HelpNavigator.KeywordIndex, parameter);
    }
    

提交回复
热议问题