# Enabling or Disabling Focus Cues

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

## Content



You can easily enable or disable focus cues for the C1DockingTab using the C1DockingTab.TabsShowFocusCues property. By default, this property is set to **true**. This topic will cover setting this property to false in design time and in code.

### In Design Time

In the Properties window, set the [C1DockingTab.TabsShowFocusCues](/componentone/docs/win/online-menus-toolbar/) to **false**.

### In Code

DOC-DETAILS-TAG-OPEN

DOC-SUMMARY-TAG-OPEN

To write code in Visual Basic

DOC-SUMMARY-TAG-CLOSE

```vbnet
c1DockingTab1.TabsShowFocusCues = false
```

DOC-DETAILS-TAG-CLOSE

DOC-DETAILS-TAG-OPEN

DOC-SUMMARY-TAG-OPEN

To write code in C#

DOC-SUMMARY-TAG-CLOSE

```csharp
c1DockingTab1.TabsShowFocusCues = false;
```

DOC-DETAILS-TAG-CLOSE

## See Also

[Loading and Saving the Layout of the DockingTab](/componentone/docs/win/online-menus-toolbar/menusandtoolbarsforw2/dockingtabtasks/loadingandsavingthel)