ComponentOne Menus and Toolbars for WinForms
Menus and Toolbars for WinForms Task-Based Help / DockingTab Tasks / Enabling DockingTab Docking and Floating
In This Topic
    Enabling DockingTab Docking and Floating
    In This Topic

    To add a C1DockingTab to your form, complete the following basic operations:

    1. Place the C1CommandDock control onto your form using a drag-and-drop operation.
    2. The C1CommandDock will dock to the left side of the form. Select the drop-down arrow in the C1CommandDock.Dock property and click the top rectangle. This will dock the C1CommandDock control to the top of the form.
    3. Place the C1DockingTab control inside the C1CommandDock control using a drag-and-drop operation. It will appear like this on your form:
      Form
    4. Build and run the application. Select Page1 with your mouse and drag it downward. Your docking tab at run time should look like the following docking tab:
      Page tab
    Note: You can use the C1CommandDock property FloatHide to control how the C1DockingTabPage behaves at run-time. This property allows you to choose to keep focus on the tab pages when the application loses focus. There are three possible settings for C1CommandDock.FloatHide: Default, Never, or FocusLost.

    Set Centre Tab Width

    In C1CommandDock, the floating tabpages can be docked using Left, Top, Right, Bottom, and Diamond anchors. When docking the tabpages in the container, existing tabs may become hidden due to the space occupied by the new tab. In such scenarios, C1CommandDock allows you to set a minimum tab size for existing tabs through CentralTabMinimumSize property available in C1CommandDock class. The CentralTabMinimumSize accepts a non-negative value, either as a percentage or an absolute value. The percentage value specifies the minimum space reserved for the existing tabs as a proportion of the parent container, whereas absolute value specifies the space in terms of pixels.

    Note: The CentralTabMinimumSize property requires at least two tabpages present in container while a new tab is docked in that area.

    The image below illustrates how the CentralTabMinimumSize property preserves space for the existing tabs in C1CommandDock while new tab is being docked.

    Dockingtab-minimum central tab minimum size

    The below code snippet illustrates setting the CentralTabMinimumSize property with value 150px for central tabs in C1CommandDock.

    C#
    Copy Code
    c1CommandDock1.CentralTabMinimumSize.WidthType = SizeType.Absolute;
    c1CommandDock1.CentralTabMinimumSize.Width = 150;
    
    See Also