Skip to main content
A newer version of this page is available. .

TabbedGroup Class

Represents a tabbed group of dock panels (LayoutPanel objects).

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v18.2.dll

Declaration

public class TabbedGroup :
    LayoutGroup

Remarks

The TabbedGroup object represents its child items as tab pages:

TabbedGroup

See Tabbed Groups to learn more.

Example

This example shows how to create TabbedGroup and DocumentGroup objects. The TabbedGroup contains two LayoutPanel objects, and the DocumentGroup contains two DocumentPanel objects.

<!--Create a Tabbed Group consisting of two tabs-->
<dxdo:TabbedGroup SelectedTabIndex="1">
    <dxdo:LayoutPanel x:Name="paneOutput" Caption="Output">
        <RichTextBox />
    </dxdo:LayoutPanel>

    <dxdo:LayoutPanel x:Name="paneFindResults" Caption="Find Results">
        <RichTextBox />
    </dxdo:LayoutPanel>
</dxdo:TabbedGroup>
<!--Create a Document Group containing two DocumentPanels-->
<dxdo:DocumentGroup x:Name="documentGroup1" SelectedTabIndex="1">
    <dxdo:DocumentPanel Caption="Document 1">
        <RichTextBox />
    </dxdo:DocumentPanel>
    <dxdo:DocumentPanel Caption="Document 2">
        <RichTextBox />
    </dxdo:DocumentPanel>
</dxdo:DocumentGroup>

The following code snippets (auto-collected from DevExpress Examples) contain references to the TabbedGroup class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

See Also