ComponentOne Menus and Toolbars for WinForms
Disabling ToolTips
Menus and Toolbars for WinForms Task-Based Help > TopicBar Tasks > Using Topic Bar ToolTips > Disabling ToolTips

You can disable all ToolTips by setting the ShowToolTips property to False.

Using the Properties Window

Complete the following steps:

  1. Right-click the C1TopicBar control to open its context menu.
  2. Select Properties to open the Properties window.
  3. Locate the ShowToolTips property, click its drop-down arrow, and select False.

In Code

Complete the following steps:

  1. Double-click in the empty part of the form to open Code view. Notice that a Form_Load event handler has been added to Code view.
  2. To set the ShowToolTips property to False, add the following code to the Form_Load event:

    To write code in Visual Basic

    Visual Basic
    Copy Code
    C1TopicBar1.ShowToolTips = False
    

    To write code in C#

    C#
    Copy Code
    c1TopicBar1.ShowToolTips = false;
    
  3. Press F5 to build the project.