在 VB.NET 中创建帮助中心
我正在 vb.net 中开发一个程序,我想向该程序添加一些帮助页面,而不使用基于 Web 的帮助,所以更像是在 Microsoft Office 程序中按 F1 时。
除了通过多种形式实现之外,是否有一种直接的方法可以做到这一点?
提前致谢!
I'm developing a program in vb.net, and I want to add in some help pages to the program, without using web-based help, so more like when you hit F1 in the Microsoft Office programs.
Is there a straightforward way of doing this, other than just making it via lots of forms?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是一个带有帮助内容的小型 Sqlite 数据库和一个从数据库读取内容的帮助浏览器?
除此之外,您还有 CHM 和 HLP 格式。通过 CHM,您可以使用 HelpProvider 来提供将此信息提供给您的用户。
http://en.wikipedia.org/wiki/Microsoft_Compiled_HTML_Help
Perhaps a small Sqlite database with the help content and a help browser that reads the content from the database?
Other than that you have CHM and HLP formats. With CHM you can use the HelpProvider to provide this information to your user.
http://en.wikipedia.org/wiki/Microsoft_Compiled_HTML_Help