In this article I will explain with an example, how to display ToolTip over Button in Windows Forms (WinForms) Application.
	
		 
	
		 
	
		Form Design
	
		The following Form consists of a Button and a ToolTip control.
	![Display ToolTip over Button in Windows Forms]() 
	
		 
	
		 
	
		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.
	![Display ToolTip over Button in Windows Forms]() 
	
		 
	
		 
	
		Configuring ToolTip
	
		ToolTipIcon - Determines the icon that is shown on the ToolTip. Here it is set to Info.
	![Display ToolTip over Button in Windows Forms]() 
	
		 
	
		IsBalloon – Indicates whether the ToolTip will take the balloon form. Here it is set to True.
	![Display ToolTip over Button in Windows Forms]() 
	
		 
	
		 
	
		Displaying ToolTip on Button hover
	
		When the mouse hovers over the button control the ToolTip will be shown with a message.
	
		 
	
		 
	
		Screenshot
	![Display ToolTip over Button in Windows Forms]() 
	
		 
	
		 
	
		Demo
	![Display ToolTip over Button in Windows Forms]() 
	
		 
	
		 
	
		Downloads