如何在 vb.net 中创建帮助文件?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/21692885/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-17 16:44:42  来源:igfitidea点击:

how do i create help files in vb.net?

vb.nethtml-help-workshop

提问by user3278013

can I create help files in html help and add it to vb.net or are there another way to implement help system on vb.net I want to create custom help files

我可以在 html help 中创建帮助文件并将其添加到 vb.net 还是有另一种方法可以在 vb.net 上实现帮助系统我想创建自定义帮助文件

回答by Amarnath Balasubramanian

The .CHM file format (Compiled HTML) is the current format used for help files wit Winforms/WPF .Net application.

.CHM 文件格式(编译的 HTML)是 Winforms/WPF .Net 应用程序帮助文件的当前格式。

There are a variety of ways to create CHM files. I'd suggest checking out this questionfor more details on how to accomplish this.

有多种方法可以创建 CHM 文件。我建议查看此问题以获取有关如何完成此操作的更多详细信息。

For ASP.Net applications, you would need to generate your own help pages.

对于 ASP.Net 应用程序,您需要生成自己的帮助页面。

Tutorials

教程

Creating help files and linking them to a VB application

创建帮助文件并将它们链接到 VB 应用程序

MSDN Documents

MSDN 文档