# Disabling ToolTips

Get started with Menus and Toolbars for WinForms. Create versatile menus and docking/floating toolbars. See more in documentation here.

## Content



You can disable all ToolTips by setting the [ShowToolTips](/componentone/docs/win/online-menus-toolbar/) property to **False**.

### Using the Properties Window

Complete the following steps:

1.  Right-click the [C1TopicBar](/componentone/docs/win/online-menus-toolbar/) control to open its context menu.
2.  Select **Properties** to open the Properties window.
3.  Locate the [ShowToolTips](/componentone/docs/win/online-menus-toolbar/) 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](/componentone/docs/win/online-menus-toolbar/) property to **False**, add the following code to the **Form\_Load** event:
    
    DOC-DETAILS-TAG-OPEN
    
    DOC-SUMMARY-TAG-OPEN
    
    To write code in Visual Basic
    
    DOC-SUMMARY-TAG-CLOSE
    
    ```vbnet
    C1TopicBar1.ShowToolTips = False
    ```
    
    DOC-DETAILS-TAG-CLOSE
    
    DOC-DETAILS-TAG-OPEN
    
    DOC-SUMMARY-TAG-OPEN
    
    To write code in C#
    
    DOC-SUMMARY-TAG-CLOSE
    
    ```csharp
    c1TopicBar1.ShowToolTips = false;
    ```
    
    DOC-DETAILS-TAG-CLOSE
    
3.  Press F5 to build the project.