How do you create the keyboard shortcut(F1) in a windows form using c#. WinChm
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Inheritance impossible in Windows Runtime Componen
Add an event handler for a control's HelpRequested event and then use the Help.ShowHelp.
For example,
You can use different HelpNavigator options to show things like the table of contents, etc.
See this related question for more information.