How to show a SuperToolTip on a TabControlAdv?

Hi,

I've been trying to add a tooltip to tabs in my TabControlAdv.
I couldn't manage to do so, so i tried the very same lines of code on a side project that contains juste a ButtonAdv, and there it works.
So is there anything else than this to do for TabControlAdv forms?

ToolTipInfo tipInfo = new ToolTipInfo();
tipInfo.Body.Text = a.Description;

tabControlAdvLambda.TabPages.Add(newTab);

superTip.SetToolTip(newTab, tipInfo);

1 Reply

LE Lokanath E Syncfusion Team August 10, 2010 10:19 AM UTC

Hi ,

Thanks for your interest in Syncfusion products.

You can add supertooltip to tabs in TabControlAdv using the following Code Snippet.

ToolTipInfo tooltipinfo1 = new ToolTipInfo();
this.tabControlAdv1.ShowSuperToolTips = true;
tooltipinfo1.Body.Text = "Tab1";
this.tabPageAdv1.SuperTooltip = tooltipinfo1;


Please refer the following sample at the following link that demonstrates the above.

http://www.syncfusion.com/uploads/redirect.aspx?&team=support&file=Tabcontroltooltip1775134093.zip

Please let us know if you have any concern.

Regards,
Lokanath.E

Loader.
Up arrow icon