Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在工具栏上有一个带有最小化/最大化按钮的表单,所以那里没有帮助按钮。
所以我想我会添加一个普通按钮并在单击事件上添加代码以显示帮助光标并在控件上显示帮助文本,就像工具栏上的帮助按钮一样。
我可以更改光标以显示问号,但这不会做任何其他事情,我怎样才能“激活”帮助功能?
您首先必须创建一个,看看Helpprovider class:
Helpprovider class
Msdn HelpProvider 类
帮助提供者示例
但是,您也可以创建一个simple form,添加一个webbrowser control。然后创建一个.html文件并将其插入到 中webbrowser control,当用户单击 时help button,form将打开带有.html帮助文本的页面。
simple form
webbrowser control
.html
help button
form
您可以在属性窗口中为打开帮助功能的按钮设置快捷方式,如下所示:
F1 按钮将调用调用帮助功能的帮助按钮后面的代码。