Back to Devexpress

AutoHideGroup.AutoHideSpeed Property

wpf-devexpress-dot-xpf-dot-docking-dot-autohidegroup.md

latest1.9 KB
Original Source

AutoHideGroup.AutoHideSpeed Property

Gets or sets the time, in milliseconds, required to open/close an auto-hidden panel belonging to the current group. This is a dependency property.

Namespace : DevExpress.Xpf.Docking

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

NuGet Package : DevExpress.Wpf.Docking

Declaration

csharp
public int AutoHideSpeed { get; set; }
vb
Public Property AutoHideSpeed As Integer

Property Value

TypeDescription
Int32

The time, in milliseconds, required to open/close an auto-hidden panel belonging to the current group.

|

Remarks

The following code sample sets the panel’s open/close animation duration to 500 milliseconds:

xaml
<dx:ThemedWindow 
  ...
  xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
  xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
  <dxdo:DockLayoutManager>
    <dxdo:DockLayoutManager.AutoHideGroups>
      <dxdo:AutoHideGroup DockType="Right" AutoHideSpeed="500">
        <dxdo:LayoutPanel Caption="Panel1"/>
      </dxdo:AutoHideGroup>
    </dxdo:DockLayoutManager.AutoHideGroups>
  </dxdo:DockLayoutManager>
</dx:ThemedWindow>

See Also

AutoHideGroup Class

AutoHideGroup Members

DevExpress.Xpf.Docking Namespace