Help Button
You can display Help on Windows Forms through the Help button, located on the right side of the title bar.
By default, the HelpButton is not shown. Set the HelpButton property to true to display a Help button in the form's caption bar. The value of the HelpButton property is ignored if the Maximize or Minimize buttons are shown. An alternative solution is to set its Visibility property to ElementVisibility.Visible in order to be displayed. The HelpButtonClicked event is fired when Help button in the title bar is clicked. It can be canceled. However, if it is not canceled, the HelpRequested event will be fired when the Help cursor is clicked on any Control.
You can find below a sample code snippet: