Docking Tab for WinForms | ComponentOne
Behavior / Display Docking Hints
In This Topic
    Display Docking Hints
    In This Topic

    Users can display Tooltips over tabs in the DockingTab control. Tooltips can be enabled by setting the ShowToolTips property to True. The C1DockingTabPage class provides the ToolTipText property to set the tooltip for each tab in the DockingTab control.

    Docking tab pages with tooltip or docking hints

    Users can set the properties from the Properties window, or use the code snippet below in the code editor:

    C#
    Copy Code
    // Add tooltip
    dockingTab.ShowToolTips = true;
    dockingTabpage.ToolTipText = "Shortcut to accessing servers";