A newer version of this page is available.
Switch to the current version.
TabbedGroup Class
Represents a tabbed group of dock panels (LayoutPanel objects).
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v19.1.dll
Declaration
Remarks
The TabbedGroup object represents its child items as tab pages:
See Tabbed Groups to learn more.
Examples
This example shows how to create TabbedGroup and DocumentGroup objects. The TabbedGroup contains two LayoutPanel objects, and the DocumentGroup contains two DocumentPanel objects.
NOTE
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-create-a-tabbedgroup-and-documentgroup-groups-e1656.
<!--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>
Inheritance
Object
DispatcherObject
DependencyObject
Visual
UIElement
FrameworkElement
Control
DevExpress.Xpf.Docking.psvFrameworkElement
BaseLayoutItem
LayoutGroup
TabbedGroup
Extension Methods
See Also
Feedback