Version

Prevent Unpinned Panes from Flying Out

When your end users unpin a pane, it will automatically collapse into the unpinned tab pane area. If your end users then hover over the pane’s header, the pane will automatically fly out to display its content. You can prevent unpinned panes from flying out automatically and instead require your end users to click the pane’s header. Simply set the xamDockManager™ control’s UnpinnedTabHoverAction property to None.

The following example code demonstrates how to prevent unpinned panes from flying out.

In XAML:

<igDock:XamDockManager Name="xamDockManager1" UnpinnedTabHoverAction="None">
    <igDock:XamDockManager.Panes>
        <igDock:SplitPane>
            <igDock:ContentPane Header="Pane 1" IsPinned=">
            </igDock:ContentPane>
        </igDock:SplitPane>
    </igDock:XamDockManager.Panes>
</igDock:XamDockManager>

In Visual Basic:

Imports Infragistics.Windows.DockManager
...
Me.xamDockManager1.UnpinnedTabHoverAction = UnpinnedTabHoverAction.None
...

In C#:

using Infragistics.Windows.DockManager;
...
this.xamDockManager1.UnpinnedTabHoverAction = UnpinnedTabHoverAction.None;
...