A newer version of this page is available.
Switch to the current version.
AutoHideGroup.DockType Property
Gets or sets the side of the DockLayoutManager at which the current AutoHideGroup object is docked. This is a dependency property.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v19.1.dll
Declaration
Property Value
Type | Description |
---|---|
Dock | A Dock value that specifies the side of the DockLayoutManager at which the current AutoHideGroup object is docked. |
Examples
This example shows how to create auto-hidden panels in XAML. To create auto-hidden panels:
1) AutoHideGroup objects are added to the DockLayoutManager.AutoHideGroups collection.
2) Panels are added to the corresponding AutoHideGroup object.
NOTE
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-create-auto-hidden-panels-e1628.
<dxdo:DockLayoutManager.AutoHideGroups>
<!--Create one AutoHideGroup on the right-->
<dxdo:AutoHideGroup DockType="Right">
<dxdo:LayoutPanel x:Name="paneProperties" Caption="Properties" ItemWidth="150">
<RichTextBox />
</dxdo:LayoutPanel>
<dxdo:LayoutPanel x:Name="paneMessages" Caption="Messages" ItemWidth="150">
<RichTextBox />
</dxdo:LayoutPanel>
</dxdo:AutoHideGroup>
<!--Create two AutoHideGroups on the left-->
<dxdo:AutoHideGroup DockType="Left">
<dxdo:LayoutPanel x:Name="paneErrors" Caption="Errors" ItemWidth="150">
<RichTextBox />
</dxdo:LayoutPanel>
<dxdo:LayoutPanel x:Name="paneWarnings" Caption="Warnings" ItemWidth="150">
<RichTextBox />
</dxdo:LayoutPanel>
</dxdo:AutoHideGroup>
<dxdo:AutoHideGroup DockType="Left">
<dxdo:LayoutPanel x:Name="paneFindResults" Caption="Find Results" ItemWidth="150">
<RichTextBox />
</dxdo:LayoutPanel>
</dxdo:AutoHideGroup>
</dxdo:DockLayoutManager.AutoHideGroups>
See Also
Feedback