Open CHM (help file) in C#

后端 未结 7 1629
花落未央
花落未央 2020-12-06 02:29

I\'m trying to open help file (chm extension) in C#.

File.Open(@\"//help.chm\",FileMode.Open, FileAccess.Read, FileShare.Read);

and

7条回答
  •  感情败类
    2020-12-06 03:05

     Help.ShowHelp(this, AppDomain.CurrentDomain.BaseDirectory+"\\test.chm", HelpNavigator.Topic, "Welcome.htm");
    

    Welcome is id of the welcome age in chm file

提交回复
热议问题