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.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(null)]
[DXCategory("Appearance")]
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 Hints and Tooltips for details.