This example demonstrates a way of using the tooltip controller to provide centralized control over the appearance of hints displayed by the Grid Control and a standard CheckBox. It assumes that the form already contains these controls.
To begin, place a ToolTipController component on the form. Modify the component's hint settings as shown in the image below.

Then you need to bind the tooltip controller to the Grid Control. DevExpress controls and components can be bound to a tooltip controller via their ToolTipController property. This property is declared in the base classes for controls, container controls and container components. Once a tooltip controller has been assigned to a control, it controls the appearance and behavior of the control's hints. Hint settings for DevExpress controls whose ToolTipController properties are not initialized are controlled by the static ToolTipController.DefaultController property.
Use the XtraGrid's BaseControl.ToolTipController property to bind the tooltip controller:

The following image shows the hint being displayed for the grid's cell with a clipped text. The hint is displayed using the settings of the assigned ToolTipController.

A standard check box does not support the DevExpress.Utils.IToolTipControlClient interface, but it can also display hints controlled by a tooltip controller.
When a ToolTipController component is placed onto a form, a ToolTip property is automatically published by controls that do not support the DevExpress.Utils.IToolTipControlClient interface. Use this property to specify the hint's text for the check box as shown in the image below.

The next image shows the hint activated for the check box.

All of the above steps can be performed programmatically.
C# |
using DevExpress.Utils;
ToolTipController tooltipController = new ToolTipController();
tooltipController.ShowBeak = true;
gridControl1.ToolTipController = tooltipController;
tooltipController.SetToolTip(checkBox1, "Show cell hints");
|
VB |
Imports DevExpress.Utils
Dim tooltipController As ToolTipController = New ToolTipController()
tooltipController.ShowBeak = true
GridControl1.ToolTipController = tooltipController
tooltipController.SetToolTip(CheckBox1, "Show cell hints")
|