DockingTab allows you to set a value indicating whether tabs can display rectangles (or cues) on focusing with the mouse cursor. The focus cues can be easily enabled or disabled for the DockingTab using the TabsShowFocusCues property of C1DockingTab class. By default, this property is set to false.
In the Properties window, set the C1DockingTab.TabsShowFocusCues to true.
The code snippet below shows how to set the TabsShowFocusCues property in DockingTab.
C# |
Copy Code
|
---|---|
c1DockingTab1.TabsShowFocusCues = true;
|
To prevent the tabs from receiving focus, use the TabsCanFocus property. Setting this property to False will prevent the tabs from receiving focus on Mouse click.