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

ToolTipController.AddClientControl(Control) Method

Enables the display of tooltips for the specified control implementing the DevExpress.Utils.IToolTipControlClient interface.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.2.dll

Declaration

public void AddClientControl(
    Control control
)

Parameters

Name Type Description
control Control

The control, implementing the DevExpress.Utils.IToolTipControlClient interface, for which tooltips should be enabled.

Remarks

The method supports the internal infrastructure and usually you do not need to call it from your code.

AddClientControl subscribes to the current tooltip controller for mouse events of the specified control. The method is called automatically by controls implementing the DevExpress.Utils.IToolTipControlClient interface to enable the tooltip controller’s functionality for these controls. See the ToolTipController topic for information on the DevExpress.Utils.IToolTipControlClient interface.

The following code snippets (auto-collected from DevExpress Examples) contain references to the AddClientControl(Control) method.

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