You can add DocumentPanel objects as children to a DocumentGroup. This allows you to create a tabbed or MDI interface for your documents.

See Document Groups and Panels to learn more.

Example
This example shows how to create a DocumentGroup with two tabs, represented by DocumentPanel (see DocumentPanel) objects.
Window1.xaml |
<dxdo:DocumentGroup x:Name="documentGroup1" ItemHeight="2*" SelectedTabIndex="1">
<dxdo:DocumentPanel x:Name="document1" Caption="Document 1">
<RichTextBox />
</dxdo:DocumentPanel>
<dxdo:DocumentPanel x:Name="document2" Caption="Document 2">
<RichTextBox />
</dxdo:DocumentPanel>
</dxdo:DocumentGroup>
|
System.Object
System.Windows.Threading.DispatcherObject
System.Windows.DependencyObject
System.Windows.Media.Visual
System.Windows.UIElement
System.Windows.FrameworkElement
System.Windows.Controls.Control
DevExpress.Xpf.Docking.psvFrameworkElement
BaseLayoutItem
ContentItem
LayoutPanel
DocumentPanel