I want to change the font and also add a title in the tooltips that are displayed when mouse over each tab of a UltraTabControl. I am using the following code to set up the tooltip for the tab.
ultraTabControl.Tabs[0].ToolTipText = "My Test Tooltip";
But it seems only allow me to setup the ToolTipText for each tab. I couldn't find APIs to set up other things (eg. font or title etc.) . Is it possible to change the font and add title in tab's tooltip?
Thanks!
Jie
Hello,
In order to achieve your goal you could use UltraToolTipManager. On the next links you will find general help for using WinToolTipManager, How Set Up WinToolTipManager at Design Time, How toSet Up WinToolTipManager at Run Time,How to create formatted tooltip, How to Manage appearance of the tooltip text
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinTooltipManager.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinToolTipManager_Set_Up_WinToolTipManager_at_Design_Time.html http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinToolTipManager_Set_Up_WinToolTipManager_at_Run_Time.html http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinToolTipManager_Creating_a_Formatted_ToolTip.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinToolTipManager_Set_Up_WinToolTipManager_at_Run_Time.html
Let me know if you have any further questions.
We are using UltraToolTipManager in our application for label, textbox, comobox etc. But the problem is the "UltraTab" (the tab in UltraTabControl) is not a Control so you cannot set its tooltip by calling "toolTipManager.SetUltraToolTip(control, info)". So how UltraToolTipManager can help here?
Thanks,
Hi,
I just wanted to know if you were able to solve your issue based on my suggestions or you still need help? Did you able to test the sample that I post ? Just let me know.
Thank you.
Yes, that is exactly what I am looking for. Thanks a lot for your help!