'Declaration Public Shared ReadOnly FlyoutAnimationProperty As DependencyProperty
public static readonly DependencyProperty FlyoutAnimationProperty
Imports Infragistics.Windows.DockManager Private Sub InitializeDmWithFlyoutAni(ByVal dockManager As XamDockManager) ' The FlyoutAnimation property allows you to ' control how/whether the unpinned flyout will ' animate into position when pinning and ' unpinning a pane dockManager.FlyoutAnimation = PaneFlyoutAnimation.Resize ' create some panes to allow the behavior to be demonstrated Dim split As New SplitPane() Dim cp As New ContentPane() cp.Header = "Pane" split.Panes.Add(cp) dockManager.Panes.Add(split) End Sub
using Infragistics.Windows.DockManager; private void InitializeDmWithFlyoutAni(XamDockManager dockManager) { // The FlyoutAnimation property allows you to // control how/whether the unpinned flyout will // animate into position when pinning and // unpinning a pane dockManager.FlyoutAnimation = PaneFlyoutAnimation.Resize; // create some panes to allow the behavior to be demonstrated SplitPane split = new SplitPane(); ContentPane cp = new ContentPane(); cp.Header = "Pane"; split.Panes.Add(cp); dockManager.Panes.Add(split); }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2