In this article I will explain with an example, how to using Tooltip in Windows Forms (WinForms) Application.
Form Design
The following Form consists of a Button and a ToolTip control.
Assigning ToolTip to the Button
The ToolTip has been assigned to the following properties.
ToolTip on ToolTip1 - Determines the ToolTip shown when the mouse hovers over the control.
Configuring ToolTip
ToolTipIcon - Determines the icon that is shown on the ToolTip. Here it is set to Info.
IsBalloon – Indicates whether the ToolTip will take the balloon form. Here it is set to True.
Displaying ToolTip on Button hover
When the mouse hovers over the button control the ToolTip will be shown with a message.
Screenshot
Demo
Downloads