Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to edit the tooltip like bold the header text?
Posted

If you are talking about the Windows Forms application then I think the with the ToolTip class http://msdn.microsoft.com/en-us/library/system.windows.forms.tooltip.aspx[^] it may not be possible as it is to get the above effects unless it is derived and the required functionality is incorporated.

In this regard I think the control given in this CodeProject article
A Professional HTML Renderer You Will Use[^] by Jose Menendez Póo is very good which permits usage of header, footer and icons in ToolTip.

I think it may be helpful.
 
Share this answer
 
Comments
Mohamed Mitwalli 23-May-12 3:39am    
5+
VJ Reddy 23-May-12 5:08am    
Thank you, Mohamed :)
Espen Harlinn 23-May-12 5:28am    
5'ed!
VJ Reddy 23-May-12 6:19am    
Thank you, Espen :)
set the properties of tooltip like

VB
ToolTip1.ToolTipTitle = "CLICK BUTTON"
        ToolTip1.IsBalloon = True
        ToolTip1.SetToolTip(Button1, "Click")



See below link also
http://www.c-sharpcorner.com/uploadfile/mahesh/tooltip-in-C-Sharp/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900