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

BaseControl.ToolTipController Property

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

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

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

Property Value

Type Default Description
ToolTipController *null*

The ToolTipController component controlling the appearance and behavior of hints displayed for this control.

Remarks

The availability and content of hints displayed for controls can be controlled by the BaseControl.ToolTip, BaseControl.SuperTip and BaseControl.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, affect hints displayed for all controls whose ToolTipController property is set to null.

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

Please refer to Tooltip Management for details.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ToolTipController property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also