How do I add tooltips to the tabs in the tabbed MDI interface?

I'd like the user to get a tooltip when they hover over one of the tabs in the tabbed MDI interface. VS.NET does this.

2 Replies

MU Murugan Syncfusion Team March 14, 2007 11:27 PM UTC

Hi Scott,

Please use SetToolTip method of the TabbedMDIManager class. Please refer to the following code snippet and let me know if it helps you.

private void barItem2_Click(object sender, EventArgs e)
{
foreach (Form f in this.tabbedMDIManager.MdiChildren)
{
this.tabbedMDIManager.SetTooltip(f, f.Text);
}
}

Thanks for using Syncfusion products.

Regards,
Murugan P.S


AD Administrator Syncfusion Team March 21, 2007 10:59 AM UTC

Perfect!

Loader.
Up arrow icon