就像windows的帮助一样,我在某个界面点“帮助”后,直接打开windows帮助的相关条目,而不需要我在帮助中再去翻

解决方案 »

  1.   

    Yes, try:
    hh mk:@MSITStore:/path/filename.chm::/path\topicname.htmFor example, with the compiled help file htmlhelp.chm, you can use:
    hh mk:@MSITStore:htmlhelp.chm::/api.htm
    hh mk:@MSITStore:c:\windows\help\htmlhelp.chm::/flash\browse.htm
      

  2.   

    string helpfile="help.chm";
    HelpNavigator navigator = HelpNavigator.KeywordIndex;
    Help.ShowHelp(this, helpfile,navigator,索引名);
      

  3.   

    HelpNavigator是C#的类吗,我只在MSDN里发现它是个枚举类型,所以 zwfhome1(任由风吹) 的代码我没法用