Skip to main content

EditorContainer.ToolTipController Property

Gets or sets the component that controls the behavior and appearance of hints displayed for a container control’s visual elements.

Namespace: DevExpress.XtraEditors.Container

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

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

Property Value

Type Default Description
ToolTipController null

A ToolTipController component specifying hint settings.

Remarks

ToolTipController components allow you to customize the appearance and behavior of hints displayed for all the visual elements owned by the control. To specify hint settings at design time, you will need to create a new ToolTipController component, customize its settings as needed and assign it to the control’s ToolTipController property. Note that one ToolTipController component can be assigned to multiple container components/controls to provide a common appearance and behavior for all the DevExpress controls in your application.

If the ToolTipController property is not initialized with any ToolTipController component, hint settings are specified by the default tooltip controller, which can be accessed via the static ToolTipController.DefaultController field. In this instance, you can customize the appearance and behavior of hints only via code.

Use the ComponentEditorContainer.GetToolTipController method to obtain the actual controller providing tooltip functionality for the container control.

The following code snippet (auto-collected from DevExpress Examples) contains a reference 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