Skip to main content
A newer version of this page is available. .

XtraTabbedMdiManager.ToolTipController Property

Gets or sets the tooltip controller component that controls the appearance, position and content of the hints displayed for tab pages.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(null)]
public virtual ToolTipController ToolTipController { get; set; }

Property Value

Type Default Description
ToolTipController *null*

The ToolTipController component which controls the appearance and behavior of the hints displayed for tab pages.

Remarks

The availability and content of hints displayed for tab pages can be controlled by the XtraMdiTabPage.Tooltip, XtraMdiTabPage.SuperTip and XtraTabbedMdiManager.ShowToolTips properties. By default, hints display only the specified text, and have the default shape and appearance. The content, appearance and behavior of tooltips can be customized using tooltip controllers.

By default, the ToolTipController property is set to null, and the control’s tooltips are handled by the Default ToolTipController, which is available via the DefaultToolTipController component. Changing this object’s properties and handling its events, affects hints displayed for all controls whose ToolTipController property is set to null.

To make tab pages’ tooltips handled by a specific tooltip controller, add a ToolTipController component to the form, and assign it to the ToolTipController property.

Please refer to Tooltips for details.

See Also