├── .gitattributes ├── .gitignore ├── Deploy ├── AssemblyVersion.cs ├── DevZest.WpfDocking │ ├── DevZest.WpfDocking.nuproj │ └── Readme.txt ├── NuGetPackageVersion.props ├── VerGen.AssemblyVersion.cs ├── VerGen.NuGetPackageVersion.props ├── VerGen.bat ├── VerGen.ps1 └── WpfDocking.Deploy.sln ├── License.txt ├── README.md ├── Samples ├── Common │ ├── CSharp │ │ ├── AdornerManagerSample │ │ │ ├── AdornerManagerSample.csproj │ │ │ ├── App.xaml │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── Window1.xaml │ │ ├── DropDownButtonSample │ │ │ ├── App.xaml │ │ │ ├── DropDownButtonSample.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── Window1.xaml │ │ ├── ReverseCollectionViewSourceSample │ │ │ ├── App.xaml │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── ReverseCollectionViewSourceSample.csproj │ │ │ └── Window1.xaml │ │ ├── SplitContainerSample │ │ │ ├── App.xaml │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── SplitContainerSample.csproj │ │ │ └── Window1.xaml │ │ ├── WindowPanelAndWindowControlSample │ │ │ ├── App.xaml │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ └── WindowPanelAndWindowControlSample.csproj │ │ └── WpfDocking.Common.sln │ └── VB │ │ ├── AdornerManagerSample │ │ ├── AdornerManagerSample.vbproj │ │ ├── Application.xaml │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ └── Window1.xaml │ │ ├── DropDownButtonSample │ │ ├── Application.xaml │ │ ├── DropDownButtonSample.vbproj │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ └── Window1.xaml │ │ ├── ReverseCollectionViewSourceSample │ │ ├── Application.xaml │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── ReverseCollectionViewSourceSample.vbproj │ │ └── Window1.xaml │ │ ├── SplitContainerSample │ │ ├── Application.xaml │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── SplitContainerSample.vbproj │ │ └── Window1.xaml │ │ ├── WindowPanelAndWindowControlSample │ │ ├── Application.xaml │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── MyExtensions │ │ │ │ └── MyWpfExtension.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── WindowPanelAndWindowControlSample.vbproj │ │ └── WpfDocking.Common.sln └── Docking │ ├── CSharp │ ├── BrowserDockSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BrowserDockSample.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ ├── Settings.settings │ │ │ └── app.manifest │ │ └── app.config │ ├── DockSample │ │ ├── DockSample.csproj │ │ ├── Document.xaml │ │ ├── Document.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Output.xaml │ │ ├── Output.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── PropertiesWindow.xaml │ │ ├── PropertiesWindow.xaml.cs │ │ ├── Resources │ │ │ ├── Document.png │ │ │ ├── Output.png │ │ │ ├── Properties.png │ │ │ ├── SavedState.png │ │ │ ├── SolutionExplorer.png │ │ │ ├── Thumbs.db │ │ │ └── Toolbox.png │ │ ├── SavedLayout.xaml │ │ ├── SavedLayout.xaml.cs │ │ ├── SolutionExplorer.xaml │ │ ├── SolutionExplorer.xaml.cs │ │ ├── Themes.cs │ │ ├── Themes │ │ │ ├── ExpressionDark.xaml │ │ │ ├── ExpressionDark │ │ │ │ ├── ContextMenu.xaml │ │ │ │ ├── Hyperlink.xaml │ │ │ │ └── Microsoft.ExpressionDark.xaml │ │ │ └── VS2010.xaml │ │ ├── Welcome.xaml │ │ ├── Welcome.xaml.cs │ │ ├── XamlWriter.NamespaceCache.cs │ │ ├── XamlWriter.NamespaceMap.cs │ │ └── XamlWriter.cs │ ├── DockingSample.sln │ ├── QuickStart │ │ ├── App.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── QuickStart.csproj │ │ ├── Window1.xaml │ │ └── app.config │ ├── Themes │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Themes.cs │ │ ├── Themes.csproj │ │ └── Themes │ │ │ ├── Empty.xaml │ │ │ ├── ExpressionDark.xaml │ │ │ ├── ExpressionDark │ │ │ ├── AutoHideClient.xaml │ │ │ ├── AutoHideTab.xaml │ │ │ ├── AutoHideWindow.xaml │ │ │ ├── Brushes.xaml │ │ │ ├── DockControl.xaml │ │ │ ├── DockItem.xaml │ │ │ ├── DockPaneControlOverlay.xaml │ │ │ ├── DockTreeClientOverlay.xaml │ │ │ ├── DockTreeControl.xaml │ │ │ ├── DocumentTab.xaml │ │ │ ├── DocumentWindow.xaml │ │ │ ├── InertButton.xaml │ │ │ ├── NativeFloatingWindow.xaml │ │ │ ├── PreviewOverlay.xaml │ │ │ ├── ToolWindow.xaml │ │ │ ├── ToolWindowTab.xaml │ │ │ ├── WindowSwitcher.xaml │ │ │ └── WpfFloatingWindow.xaml │ │ │ ├── VS2010.xaml │ │ │ └── VS2010 │ │ │ ├── AutoHideClient.xaml │ │ │ ├── AutoHideTab.xaml │ │ │ ├── AutoHideWindow.xaml │ │ │ ├── Brushes.xaml │ │ │ ├── DockControl.xaml │ │ │ ├── DockGuide.xaml │ │ │ ├── DockPaneControlOverlay.xaml │ │ │ ├── DockTreeClientOverlay.xaml │ │ │ ├── DockTreeControl.xaml │ │ │ ├── DocumentTab.xaml │ │ │ ├── DocumentWindow.xaml │ │ │ ├── InertButton.xaml │ │ │ ├── NativeFloatingWindow.xaml │ │ │ ├── PreviewOverlay.xaml │ │ │ ├── ToolWindow.xaml │ │ │ ├── ToolWindowCaption.xaml │ │ │ ├── ToolWindowTab.xaml │ │ │ ├── WindowSwitcher.xaml │ │ │ └── WpfFloatingWindow.xaml │ └── WindowDockSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WindowDockSample.csproj │ │ └── app.config │ └── VB │ ├── BrowserDockSample │ ├── Application.xaml │ ├── Application.xaml.vb │ ├── BrowserDockSample.vbproj │ └── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ └── app.manifest │ ├── DockSample │ ├── DockSample.vbproj │ ├── Document.xaml │ ├── Document.xaml.vb │ ├── MainPage.xaml │ ├── MainPage.xaml.vb │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Output.xaml │ ├── Output.xaml.vb │ ├── PropertiesWindow.xaml │ ├── PropertiesWindow.xaml.vb │ ├── Resources │ │ ├── Document.png │ │ ├── Output.png │ │ ├── Properties.png │ │ ├── SavedState.png │ │ ├── SolutionExplorer.png │ │ └── Toolbox.png │ ├── SavedLayout.xaml │ ├── SavedLayout.xaml.vb │ ├── SolutionExplorer.xaml │ ├── SolutionExplorer.xaml.vb │ ├── Themes.vb │ ├── Themes │ │ ├── ExpressionDark.xaml │ │ ├── ExpressionDark │ │ │ ├── ContextMenu.xaml │ │ │ ├── Hyperlink.xaml │ │ │ └── Microsoft.ExpressionDark.xaml │ │ └── VS2010.xaml │ ├── Welcome.xaml │ ├── Welcome.xaml.vb │ ├── XamlWriter.NamespaceCache.vb │ ├── XamlWriter.NamespaceMap.vb │ └── XamlWriter.vb │ ├── DockingSample.sln │ ├── QuickStart │ ├── Application.xaml │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── MyExtensions │ │ │ └── MyWpfExtension.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── QuickStart.vbproj │ └── Window1.xaml │ ├── Themes │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Themes.vb │ ├── Themes.vbproj │ └── Themes │ │ ├── Empty.xaml │ │ ├── ExpressionDark.xaml │ │ ├── ExpressionDark │ │ ├── AutoHideClient.xaml │ │ ├── AutoHideTab.xaml │ │ ├── AutoHideWindow.xaml │ │ ├── Brushes.xaml │ │ ├── DockControl.xaml │ │ ├── DockItem.xaml │ │ ├── DockPaneControlOverlay.xaml │ │ ├── DockTreeClientOverlay.xaml │ │ ├── DockTreeControl.xaml │ │ ├── DocumentTab.xaml │ │ ├── DocumentWindow.xaml │ │ ├── InertButton.xaml │ │ ├── NativeFloatingWindow.xaml │ │ ├── PreviewOverlay.xaml │ │ ├── ToolWindow.xaml │ │ ├── ToolWindowTab.xaml │ │ ├── WindowSwitcher.xaml │ │ └── WpfFloatingWindow.xaml │ │ ├── VS2010.xaml │ │ └── VS2010 │ │ ├── AutoHideClient.xaml │ │ ├── AutoHideTab.xaml │ │ ├── AutoHideWindow.xaml │ │ ├── Brushes.xaml │ │ ├── DockControl.xaml │ │ ├── DockGuide.xaml │ │ ├── DockPaneControlOverlay.xaml │ │ ├── DockTreeClientOverlay.xaml │ │ ├── DockTreeControl.xaml │ │ ├── DocumentTab.xaml │ │ ├── DocumentWindow.xaml │ │ ├── InertButton.xaml │ │ ├── NativeFloatingWindow.xaml │ │ ├── PreviewOverlay.xaml │ │ ├── ToolWindow.xaml │ │ ├── ToolWindowCaption.xaml │ │ ├── ToolWindowTab.xaml │ │ ├── WindowSwitcher.xaml │ │ └── WpfFloatingWindow.xaml │ └── WindowDockSample │ ├── Application.xaml │ ├── Application.xaml.vb │ ├── MainWindow.xaml │ ├── MainWindow.xaml.vb │ ├── My Project │ ├── AssemblyInfo.vb │ ├── MyExtensions │ │ └── MyWpfExtension.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── WindowDockSample.vbproj ├── Src ├── Dictionary.xml ├── GlobalSuppressions.cs ├── Internal │ ├── BooleanBoxes.cs │ ├── Extension.IsClose.cs │ └── Windows │ │ ├── DragHandlerBase.cs │ │ ├── Extension.IsClose.cs │ │ └── KeyboardManager.cs ├── Properties │ └── AssemblyInfo.cs ├── Themes │ ├── Generic.xaml │ └── Generic │ │ ├── AutoHideClient.xaml │ │ ├── AutoHideStrip.xaml │ │ ├── AutoHideTab.xaml │ │ ├── AutoHideWindow.xaml │ │ ├── Brushes.xaml │ │ ├── DockControl.xaml │ │ ├── DockItem.TabContextMenu.xaml │ │ ├── DockItem.xaml │ │ ├── DockPane.xaml │ │ ├── DockPaneControl.xaml │ │ ├── DockPaneControlOverlay.xaml │ │ ├── DockPaneSplit.xaml │ │ ├── DockTree.xaml │ │ ├── DockTreeClient.xaml │ │ ├── DockTreeClientOverlay.xaml │ │ ├── DockTreeControl.xaml │ │ ├── DockTreeSplit.xaml │ │ ├── DockTreeSplitter.xaml │ │ ├── DockWindow.InertButton.xaml │ │ ├── DocumentTab.xaml │ │ ├── DocumentTabStrip.xaml │ │ ├── DocumentWindow.xaml │ │ ├── Empty.xaml │ │ ├── Images.xaml │ │ ├── InertButton.xaml │ │ ├── NativeFloatingWindow.xaml │ │ ├── PreviewOverlay.xaml │ │ ├── SplitContainer.xaml │ │ ├── ToolWindow.xaml │ │ ├── ToolWindowCaption.xaml │ │ ├── ToolWindowTab.xaml │ │ ├── ToolWindowTabStrip.xaml │ │ ├── WindowSwitcher.xaml │ │ ├── WpfFloatingWindow.xaml │ │ └── WpfFloatingWindowClient.xaml ├── Windows │ ├── AdornerManager.DecoratorAdorner.cs │ ├── AdornerManager.cs │ ├── CollectionUtil.cs │ ├── ConditionalUriExtension.cs │ ├── Docking │ │ ├── AllowedDockTreePositions.cs │ │ ├── DockCommands.cs │ │ ├── DockControl.CommandUnit.cs │ │ ├── DockControl.ResizeDockTreeCommand.cs │ │ ├── DockControl.ResizeDockTreeData.cs │ │ ├── DockControl.UpdateDockTreeZOrderCommand.cs │ │ ├── DockControl.cs │ │ ├── DockControlTreePosition.cs │ │ ├── DockItem.CloseCommand.cs │ │ ├── DockItem.CloseEventArgs.cs │ │ ├── DockItem.CommandBase.cs │ │ ├── DockItem.DeselectCommand.cs │ │ ├── DockItem.DeselectEventArgs.cs │ │ ├── DockItem.HideCommand.cs │ │ ├── DockItem.HideEventArgs.cs │ │ ├── DockItem.SelectCommand.cs │ │ ├── DockItem.SelectEventArgs.cs │ │ ├── DockItem.ShowActionEventArgs.cs │ │ ├── DockItem.ShowAsDockPositionCommand.cs │ │ ├── DockItem.ShowAsDockPositionEventArgs.cs │ │ ├── DockItem.ShowAsFloatingCommand.cs │ │ ├── DockItem.ShowAsFloatingEventArgs.cs │ │ ├── DockItem.ShowAsSidePaneCommand.cs │ │ ├── DockItem.ShowAsSidePaneEventArgs.cs │ │ ├── DockItem.ShowAsTabbedCommand.cs │ │ ├── DockItem.ShowAsTabbedEventArgs.cs │ │ ├── DockItem.ShowCloseCommandBase.cs │ │ ├── DockItem.ShowCommandBase.cs │ │ ├── DockItem.ToggleAutoHideCommand.cs │ │ ├── DockItem.ToggleAutoHideEventArgs.cs │ │ ├── DockItem.UpdateAutoHideSizeCommand.cs │ │ ├── DockItem.UpdateAutoHideSizeData.cs │ │ ├── DockItem.cs │ │ ├── DockItemCollection.cs │ │ ├── DockItemReference.cs │ │ ├── DockItemShowMethod.cs │ │ ├── DockItemStateChangeMethod.cs │ │ ├── DockItemStateEventArgs.cs │ │ ├── DockLayout.cs │ │ ├── DockLayoutAdapter.cs │ │ ├── DockPane.cs │ │ ├── DockPaneCollection.cs │ │ ├── DockPaneManager.cs │ │ ├── DockPaneNode.cs │ │ ├── DockPaneNodeStruct.cs │ │ ├── DockPaneSplit.cs │ │ ├── DockPosition.cs │ │ ├── DockPositionHelper.cs │ │ ├── DockTree.cs │ │ ├── DockTreePosition.cs │ │ ├── DockTreeZOrder.cs │ │ ├── DockTreeZOrderConverter.cs │ │ ├── FloatingWindow.UpdateBoundsCommand.cs │ │ ├── FloatingWindow.UpdateBoundsData.cs │ │ ├── FloatingWindow.cs │ │ ├── FloatingWindowCollection.cs │ │ ├── ICommand.cs │ │ ├── IDockItemUndoRedoReference.cs │ │ ├── IValueChangedCommand.cs │ │ ├── Primitives │ │ │ ├── AutoHide.cs │ │ │ ├── AutoHideAnimation.cs │ │ │ ├── AutoHideClient.cs │ │ │ ├── AutoHideStrip.cs │ │ │ ├── AutoHideTab.cs │ │ │ ├── AutoHideWindow.cs │ │ │ ├── DockManager.DragHandler.cs │ │ │ ├── DockManager.NestedDockEntry.cs │ │ │ ├── DockManager.Target.cs │ │ │ ├── DockManager.WindowHandler.OverlayWindow.cs │ │ │ ├── DockManager.WindowHandler.cs │ │ │ ├── DockManager.cs │ │ │ ├── DockPaneControl.cs │ │ │ ├── DockPaneControlOverlay.cs │ │ │ ├── DockPanePreviewPlacement.cs │ │ │ ├── DockTreeClient.cs │ │ │ ├── DockTreeClientOverlay.cs │ │ │ ├── DockTreeControl.cs │ │ │ ├── DockTreeSplit.cs │ │ │ ├── DockTreeSplitControl.cs │ │ │ ├── DockTreeSplitter.cs │ │ │ ├── DockWindow.cs │ │ │ ├── DockWindowTab.cs │ │ │ ├── DocumentTab.cs │ │ │ ├── DocumentTabPanel.cs │ │ │ ├── DocumentTabStrip.cs │ │ │ ├── DocumentWindow.cs │ │ │ ├── DropPosition.cs │ │ │ ├── FloatingWindowAdorner.cs │ │ │ ├── FloatingWindowStrategy.cs │ │ │ ├── IDragDropSource.cs │ │ │ ├── InertButton.cs │ │ │ ├── IsAutoHideValueConverter.cs │ │ │ ├── IsFloatingValueConverter.cs │ │ │ ├── NativeFloatingWindow.cs │ │ │ ├── NativeFloatingWindowPreview.cs │ │ │ ├── Overlay.cs │ │ │ ├── PreviewOverlay.cs │ │ │ ├── RelativePoint.cs │ │ │ ├── TabBorder.cs │ │ │ ├── ToolWindow.cs │ │ │ ├── ToolWindowCaption.cs │ │ │ ├── ToolWindowTab.cs │ │ │ ├── ToolWindowTabPanel.cs │ │ │ ├── ToolWindowTabStrip.cs │ │ │ ├── WindowSwitcher.cs │ │ │ ├── WindowViewbox.cs │ │ │ ├── WpfFloatingWindow.cs │ │ │ └── WpfFloatingWindowClient.cs │ │ ├── SR.Designer.cs │ │ ├── SR.resx │ │ ├── ShowAction.cs │ │ ├── ShowAsDockPositionAction.cs │ │ ├── ShowAsFloatingAction.cs │ │ ├── ShowAsSidePaneAction.cs │ │ ├── ShowAsTabbedAction.cs │ │ ├── ShowInDockTreeAction.cs │ │ └── SplitChildrenVisibility.cs │ ├── DropDownButton.cs │ ├── FallbackBehavior.cs │ ├── IWindow.cs │ ├── MapConverter.cs │ ├── Mapping.cs │ ├── OrientationBoxes.cs │ ├── RecycleReference.cs │ ├── ReverseCollectionViewSource.cs │ ├── SR.Designer.cs │ ├── SR.resx │ ├── ScrollButtonVisibilityConverter.cs │ ├── SplitContainer.DragHandler.cs │ ├── SplitContainer.cs │ ├── SplitterDistance.cs │ ├── SplitterDistanceConverter.cs │ ├── SplitterUnitType.cs │ ├── StyleManager.cs │ ├── UndoRedoStack.cs │ ├── WindowControl.DragHandler.cs │ ├── WindowControl.cs │ ├── WindowHotspot.cs │ └── WindowPanel.cs ├── WpfDocking.Deploy.csproj └── WpfDocking.csproj ├── WpfDocking.sln ├── docs ├── CNAME ├── api │ ├── DevZest.Windows.AdornerManager.AdornerProperty.html │ ├── DevZest.Windows.AdornerManager.AdornerTemplateProperty.html │ ├── DevZest.Windows.AdornerManager.GetAdorner.html │ ├── DevZest.Windows.AdornerManager.GetAdornerTemplate.html │ ├── DevZest.Windows.AdornerManager.SetAdorner.html │ ├── DevZest.Windows.AdornerManager.SetAdornerTemplate.html │ ├── DevZest.Windows.AdornerManager.html │ ├── DevZest.Windows.ConditionalUriExtension.Condition.html │ ├── DevZest.Windows.ConditionalUriExtension.False.html │ ├── DevZest.Windows.ConditionalUriExtension.ProvideValue.html │ ├── DevZest.Windows.ConditionalUriExtension.True.html │ ├── DevZest.Windows.ConditionalUriExtension.html │ ├── DevZest.Windows.Docking.AllowedDockTreePositions.html │ ├── DevZest.Windows.Docking.DockCommands.MakeFloating.html │ ├── DevZest.Windows.Docking.DockCommands.PerformClose.html │ ├── DevZest.Windows.Docking.DockCommands.Redo.html │ ├── DevZest.Windows.Docking.DockCommands.Show.html │ ├── DevZest.Windows.Docking.DockCommands.ToggleAutoHide.html │ ├── DevZest.Windows.Docking.DockCommands.ToggleFloating.html │ ├── DevZest.Windows.Docking.DockCommands.ToggleWindowState.html │ ├── DevZest.Windows.Docking.DockCommands.Undo.html │ ├── DevZest.Windows.Docking.DockCommands.html │ ├── DevZest.Windows.Docking.DockControl.-ctor.html │ ├── DevZest.Windows.Docking.DockControl.ActiveDocument.html │ ├── DevZest.Windows.Docking.DockControl.ActiveDocumentChanged.html │ ├── DevZest.Windows.Docking.DockControl.ActiveDocumentProperty.html │ ├── DevZest.Windows.Docking.DockControl.ActiveItem.html │ ├── DevZest.Windows.Docking.DockControl.ActiveItemChanged.html │ ├── DevZest.Windows.Docking.DockControl.ActiveItemProperty.html │ ├── DevZest.Windows.Docking.DockControl.BeginUndoUnit.html │ ├── DevZest.Windows.Docking.DockControl.BottomDockTree.html │ ├── DevZest.Windows.Docking.DockControl.BottomDockTreeHeight.html │ ├── DevZest.Windows.Docking.DockControl.BottomDockTreeHeightProperty.html │ ├── DevZest.Windows.Docking.DockControl.BottomDockTreeProperty.html │ ├── DevZest.Windows.Docking.DockControl.CanRedo.html │ ├── DevZest.Windows.Docking.DockControl.CanRedoProperty.html │ ├── DevZest.Windows.Docking.DockControl.CanUndo.html │ ├── DevZest.Windows.Docking.DockControl.CanUndoProperty.html │ ├── DevZest.Windows.Docking.DockControl.ClearUndo.html │ ├── DevZest.Windows.Docking.DockControl.DefaultFloatingWindowSize.html │ ├── DevZest.Windows.Docking.DockControl.DefaultFloatingWindowSizeProperty.html │ ├── DevZest.Windows.Docking.DockControl.DockItemStateChanged.html │ ├── DevZest.Windows.Docking.DockControl.DockItemStateChanging.html │ ├── DevZest.Windows.Docking.DockControl.DockItems.html │ ├── DevZest.Windows.Docking.DockControl.DockTreeZOrder.html │ ├── DevZest.Windows.Docking.DockControl.DockTreeZOrderProperty.html │ ├── DevZest.Windows.Docking.DockControl.DocumentDockTree.html │ ├── DevZest.Windows.Docking.DockControl.DocumentDockTreeProperty.html │ ├── DevZest.Windows.Docking.DockControl.Documents.html │ ├── DevZest.Windows.Docking.DockControl.EndUndoUnit.html │ ├── DevZest.Windows.Docking.DockControl.FloatingWindows.html │ ├── DevZest.Windows.Docking.DockControl.FocusedItem.html │ ├── DevZest.Windows.Docking.DockControl.FocusedItemChanged.html │ ├── DevZest.Windows.Docking.DockControl.FocusedItemProperty.html │ ├── DevZest.Windows.Docking.DockControl.LeftDockTree.html │ ├── DevZest.Windows.Docking.DockControl.LeftDockTreeProperty.html │ ├── DevZest.Windows.Docking.DockControl.LeftDockTreeWidth.html │ ├── DevZest.Windows.Docking.DockControl.LeftDockTreeWidthProperty.html │ ├── DevZest.Windows.Docking.DockControl.Load.html │ ├── DevZest.Windows.Docking.DockControl.LogicalChildren.html │ ├── DevZest.Windows.Docking.DockControl.MaxUndoLevel.html │ ├── DevZest.Windows.Docking.DockControl.MaxUndoLevelProperty.html │ ├── DevZest.Windows.Docking.DockControl.OnActiveDocumentChanged.html │ ├── DevZest.Windows.Docking.DockControl.OnActiveItemChanged.html │ ├── DevZest.Windows.Docking.DockControl.OnDockItemStateChanged.html │ ├── DevZest.Windows.Docking.DockControl.OnDockItemStateChanging.html │ ├── DevZest.Windows.Docking.DockControl.OnFocusedItemChanged.html │ ├── DevZest.Windows.Docking.DockControl.OnSelectedAutoHideItemChanged.html │ ├── DevZest.Windows.Docking.DockControl.Panes.html │ ├── DevZest.Windows.Docking.DockControl.Redo.html │ ├── DevZest.Windows.Docking.DockControl.RightDockTree.html │ ├── DevZest.Windows.Docking.DockControl.RightDockTreeProperty.html │ ├── DevZest.Windows.Docking.DockControl.RightDockTreeWidth.html │ ├── DevZest.Windows.Docking.DockControl.RightDockTreeWidthProperty.html │ ├── DevZest.Windows.Docking.DockControl.Save.html │ ├── DevZest.Windows.Docking.DockControl.SelectedAutoHideItem.html │ ├── DevZest.Windows.Docking.DockControl.SelectedAutoHideItemChanged.html │ ├── DevZest.Windows.Docking.DockControl.SelectedAutoHideItemProperty.html │ ├── DevZest.Windows.Docking.DockControl.TopDockTree.html │ ├── DevZest.Windows.Docking.DockControl.TopDockTreeHeight.html │ ├── DevZest.Windows.Docking.DockControl.TopDockTreeHeightProperty.html │ ├── DevZest.Windows.Docking.DockControl.TopDockTreeProperty.html │ ├── DevZest.Windows.Docking.DockControl.Undo.html │ ├── DevZest.Windows.Docking.DockControl.UndoUnitLevel.html │ ├── DevZest.Windows.Docking.DockControl.html │ ├── DevZest.Windows.Docking.DockControlTreePosition.html │ ├── DevZest.Windows.Docking.DockItem.Activate.html │ ├── DevZest.Windows.Docking.DockItem.AllowedDockTreePositions.html │ ├── DevZest.Windows.Docking.DockItem.AllowedDockTreePositionsProperty.html │ ├── DevZest.Windows.Docking.DockItem.AutoHideSize.html │ ├── DevZest.Windows.Docking.DockItem.AutoHideSizeProperty.html │ ├── DevZest.Windows.Docking.DockItem.CanToggleAutoHide.html │ ├── DevZest.Windows.Docking.DockItem.CanToggleFloating.html │ ├── DevZest.Windows.Docking.DockItem.Close.html │ ├── DevZest.Windows.Docking.DockItem.Closing.html │ ├── DevZest.Windows.Docking.DockItem.DefaultDockPosition.html │ ├── DevZest.Windows.Docking.DockItem.DefaultDockPositionProperty.html │ ├── DevZest.Windows.Docking.DockItem.Description.html │ ├── DevZest.Windows.Docking.DockItem.DescriptionProperty.html │ ├── DevZest.Windows.Docking.DockItem.DevZest-Windows-Docking-IDockItemUndoRedoReference-DockItem.html │ ├── DevZest.Windows.Docking.DockItem.DockControl.html │ ├── DevZest.Windows.Docking.DockItem.DockControlProperty.html │ ├── DevZest.Windows.Docking.DockItem.DockPosition.html │ ├── DevZest.Windows.Docking.DockItem.DockPositionProperty.html │ ├── DevZest.Windows.Docking.DockItem.DockTreePosition.html │ ├── DevZest.Windows.Docking.DockItem.FirstPane.html │ ├── DevZest.Windows.Docking.DockItem.FirstPaneProperty.html │ ├── DevZest.Windows.Docking.DockItem.Hide.html │ ├── DevZest.Windows.Docking.DockItem.HideOnPerformClose.html │ ├── DevZest.Windows.Docking.DockItem.HideOnPerformCloseProperty.html │ ├── DevZest.Windows.Docking.DockItem.Icon.html │ ├── DevZest.Windows.Docking.DockItem.IconProperty.html │ ├── DevZest.Windows.Docking.DockItem.IsActiveDocument.html │ ├── DevZest.Windows.Docking.DockItem.IsActiveDocumentProperty.html │ ├── DevZest.Windows.Docking.DockItem.IsActiveItem.html │ ├── DevZest.Windows.Docking.DockItem.IsActiveItemProperty.html │ ├── DevZest.Windows.Docking.DockItem.IsAutoHide.html │ ├── DevZest.Windows.Docking.DockItem.IsHidden.html │ ├── DevZest.Windows.Docking.DockItem.IsHiddenProperty.html │ ├── DevZest.Windows.Docking.DockItem.IsSelected.html │ ├── DevZest.Windows.Docking.DockItem.IsSelectedProperty.html │ ├── DevZest.Windows.Docking.DockItem.MeasureOverride.html │ ├── DevZest.Windows.Docking.DockItem.OnApplyTemplate.html │ ├── DevZest.Windows.Docking.DockItem.OnClosing.html │ ├── DevZest.Windows.Docking.DockItem.OnIsKeyboardFocusWithinChanged.html │ ├── DevZest.Windows.Docking.DockItem.OnPreviewGotKeyboardFocus.html │ ├── DevZest.Windows.Docking.DockItem.OnStateChanged.html │ ├── DevZest.Windows.Docking.DockItem.OnStateChanging.html │ ├── DevZest.Windows.Docking.DockItem.PerformClose.html │ ├── DevZest.Windows.Docking.DockItem.Save.html │ ├── DevZest.Windows.Docking.DockItem.SecondPane.html │ ├── DevZest.Windows.Docking.DockItem.SecondPaneProperty.html │ ├── DevZest.Windows.Docking.DockItem.Show.html │ ├── DevZest.Windows.Docking.DockItem.ShowAction.html │ ├── DevZest.Windows.Docking.DockItem.StateChanged.html │ ├── DevZest.Windows.Docking.DockItem.StateChanging.html │ ├── DevZest.Windows.Docking.DockItem.TabContextMenu.html │ ├── DevZest.Windows.Docking.DockItem.TabContextMenuProperty.html │ ├── DevZest.Windows.Docking.DockItem.TabText.html │ ├── DevZest.Windows.Docking.DockItem.TabTextProperty.html │ ├── DevZest.Windows.Docking.DockItem.Title.html │ ├── DevZest.Windows.Docking.DockItem.TitleProperty.html │ ├── DevZest.Windows.Docking.DockItem.ToggleAutoHide.html │ ├── DevZest.Windows.Docking.DockItem.ToggleFloating.html │ ├── DevZest.Windows.Docking.DockItem.UndoRedoReference.html │ ├── DevZest.Windows.Docking.DockItem.html │ ├── DevZest.Windows.Docking.DockItemCollection.Add.html │ ├── DevZest.Windows.Docking.DockItemCollection.System-Collections-IList-Clear.html │ ├── DevZest.Windows.Docking.DockItemCollection.System-Collections-IList-IsFixedSize.html │ ├── DevZest.Windows.Docking.DockItemCollection.System-Collections-IList-IsReadOnly.html │ ├── DevZest.Windows.Docking.DockItemCollection.html │ ├── DevZest.Windows.Docking.DockItemReference.AutoHideSize.html │ ├── DevZest.Windows.Docking.DockItemReference.Target.html │ ├── DevZest.Windows.Docking.DockItemReference.html │ ├── DevZest.Windows.Docking.DockItemShowMethod.html │ ├── DevZest.Windows.Docking.DockItemStateChangeMethod.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.DockControl.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.DockItem.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.NewDockPosition.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.NewDockTreePosition.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.NewIsAutoHide.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.OldDockPosition.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.OldDockTreePosition.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.OldIsAutoHide.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.ShowAction.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.ShowMethod.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.StateChangeMethod.html │ ├── DevZest.Windows.Docking.DockItemStateEventArgs.html │ ├── DevZest.Windows.Docking.DockLayout.BottomDockTreeHeight.html │ ├── DevZest.Windows.Docking.DockLayout.DockItems.html │ ├── DevZest.Windows.Docking.DockLayout.DockTreeZOrder.html │ ├── DevZest.Windows.Docking.DockLayout.LeftDockTreeWidth.html │ ├── DevZest.Windows.Docking.DockLayout.RightDockTreeWidth.html │ ├── DevZest.Windows.Docking.DockLayout.ShowActions.html │ ├── DevZest.Windows.Docking.DockLayout.TopDockTreeHeight.html │ ├── DevZest.Windows.Docking.DockLayout.html │ ├── DevZest.Windows.Docking.DockPane.ActiveItems.html │ ├── DevZest.Windows.Docking.DockPane.CountOfVisibleItems.html │ ├── DevZest.Windows.Docking.DockPane.CountOfVisibleItemsProperty.html │ ├── DevZest.Windows.Docking.DockPane.Items.html │ ├── DevZest.Windows.Docking.DockPane.SelectedItem.html │ ├── DevZest.Windows.Docking.DockPane.SelectedItemProperty.html │ ├── DevZest.Windows.Docking.DockPane.VisibleItems.html │ ├── DevZest.Windows.Docking.DockPane.html │ ├── DevZest.Windows.Docking.DockPaneCollection.html │ ├── DevZest.Windows.Docking.DockPaneNode.DockControl.html │ ├── DevZest.Windows.Docking.DockPaneNode.DockControlProperty.html │ ├── DevZest.Windows.Docking.DockPaneNode.DockPosition.html │ ├── DevZest.Windows.Docking.DockPaneNode.DockPositionProperty.html │ ├── DevZest.Windows.Docking.DockPaneNode.DockTreePosition.html │ ├── DevZest.Windows.Docking.DockPaneNode.FloatingWindow.html │ ├── DevZest.Windows.Docking.DockPaneNode.FloatingWindowProperty.html │ ├── DevZest.Windows.Docking.DockPaneNode.Parent.html │ ├── DevZest.Windows.Docking.DockPaneNode.html │ ├── DevZest.Windows.Docking.DockPaneSplit.Child1.html │ ├── DevZest.Windows.Docking.DockPaneSplit.Child1Property.html │ ├── DevZest.Windows.Docking.DockPaneSplit.Child2.html │ ├── DevZest.Windows.Docking.DockPaneSplit.Child2Property.html │ ├── DevZest.Windows.Docking.DockPaneSplit.ChildrenVisibility.html │ ├── DevZest.Windows.Docking.DockPaneSplit.ChildrenVisibilityProperty.html │ ├── DevZest.Windows.Docking.DockPaneSplit.IsSplitterTopLeft.html │ ├── DevZest.Windows.Docking.DockPaneSplit.IsSplitterTopLeftProperty.html │ ├── DevZest.Windows.Docking.DockPaneSplit.Orientation.html │ ├── DevZest.Windows.Docking.DockPaneSplit.OrientationProperty.html │ ├── DevZest.Windows.Docking.DockPaneSplit.SplitterDistance.html │ ├── DevZest.Windows.Docking.DockPaneSplit.SplitterDistanceProperty.html │ ├── DevZest.Windows.Docking.DockPaneSplit.ToString.html │ ├── DevZest.Windows.Docking.DockPaneSplit.html │ ├── DevZest.Windows.Docking.DockPosition.html │ ├── DevZest.Windows.Docking.DockTree.ActivePanes.html │ ├── DevZest.Windows.Docking.DockTree.AutoHideItems.html │ ├── DevZest.Windows.Docking.DockTree.AutoHidePanes.html │ ├── DevZest.Windows.Docking.DockTree.DockControl.html │ ├── DevZest.Windows.Docking.DockTree.DockControlProperty.html │ ├── DevZest.Windows.Docking.DockTree.FloatingWindow.html │ ├── DevZest.Windows.Docking.DockTree.IsVisible.html │ ├── DevZest.Windows.Docking.DockTree.IsVisibleProperty.html │ ├── DevZest.Windows.Docking.DockTree.Panes.html │ ├── DevZest.Windows.Docking.DockTree.Position.html │ ├── DevZest.Windows.Docking.DockTree.PositionProperty.html │ ├── DevZest.Windows.Docking.DockTree.RootNode.html │ ├── DevZest.Windows.Docking.DockTree.RootNodeProperty.html │ ├── DevZest.Windows.Docking.DockTree.ToString.html │ ├── DevZest.Windows.Docking.DockTree.VisiblePanes.html │ ├── DevZest.Windows.Docking.DockTree.html │ ├── DevZest.Windows.Docking.DockTreePosition.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.-ctor.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.BringToFront.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.Default.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.Equals.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.First.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.Fourth.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.GetHashCode.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.IndexOf.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.Item.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.Second.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.SendToBack.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.Third.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.ToString.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.op_Equality.html │ ├── DevZest.Windows.Docking.DockTreeZOrder.op_Inequality.html │ ├── DevZest.Windows.Docking.DockTreeZOrderConverter.CanConvertFrom.html │ ├── DevZest.Windows.Docking.DockTreeZOrderConverter.CanConvertTo.html │ ├── DevZest.Windows.Docking.DockTreeZOrderConverter.ConvertFrom.html │ ├── DevZest.Windows.Docking.DockTreeZOrderConverter.ConvertTo.html │ ├── DevZest.Windows.Docking.DockTreeZOrderConverter.html │ ├── DevZest.Windows.Docking.FloatingWindow.ActivePanes.html │ ├── DevZest.Windows.Docking.FloatingWindow.CanBeNative.html │ ├── DevZest.Windows.Docking.FloatingWindow.CountOfVisiblePanes.html │ ├── DevZest.Windows.Docking.FloatingWindow.CountOfVisiblePanesProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.DockControl.html │ ├── DevZest.Windows.Docking.FloatingWindow.DockControlProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.DockTree.html │ ├── DevZest.Windows.Docking.FloatingWindow.DockTreeProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.FirstVisiblePane.html │ ├── DevZest.Windows.Docking.FloatingWindow.FirstVisiblePaneProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.Height.html │ ├── DevZest.Windows.Docking.FloatingWindow.HeightProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.IsVisible.html │ ├── DevZest.Windows.Docking.FloatingWindow.IsVisibleProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.Left.html │ ├── DevZest.Windows.Docking.FloatingWindow.LeftProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.Panes.html │ ├── DevZest.Windows.Docking.FloatingWindow.Top.html │ ├── DevZest.Windows.Docking.FloatingWindow.TopProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.VisiblePanes.html │ ├── DevZest.Windows.Docking.FloatingWindow.Width.html │ ├── DevZest.Windows.Docking.FloatingWindow.WidthProperty.html │ ├── DevZest.Windows.Docking.FloatingWindow.html │ ├── DevZest.Windows.Docking.FloatingWindowCollection.CollectionChanged.html │ ├── DevZest.Windows.Docking.FloatingWindowCollection.html │ ├── DevZest.Windows.Docking.IDockItemUndoRedoReference.DockItem.html │ ├── DevZest.Windows.Docking.IDockItemUndoRedoReference.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.AnimationDurationProperty.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.AnimationProperty.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.GetAnimation.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.GetAnimationDuration.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.SetAnimation.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.SetAnimationDuration.html │ ├── DevZest.Windows.Docking.Primitives.AutoHide.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideAnimation.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideClient.DockControl.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideClient.DockControlProperty.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideClient.OnApplyTemplate.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideClient.SelectedItem.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideClient.SelectedItemProperty.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideClient.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideStrip.GetContainerForItemOverride.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideStrip.IsItemItsOwnContainerOverride.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideStrip.Placement.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideStrip.PlacementProperty.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideStrip.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideTab.OnMouseEnter.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideTab.OnMouseLeave.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideTab.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideTab.OnMouseMove.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideTab.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideWindow.DoubleClickCommand.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideWindow.DoubleClickCommandProperty.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideWindow.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideWindow.OnPreviewMouseDown.html │ ├── DevZest.Windows.Docking.Primitives.AutoHideWindow.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.CanDragProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.DefaultFloatingPreviewSizeProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.FloatingPreviewHeightProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.FloatingPreviewLeftProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.FloatingPreviewTopProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.FloatingPreviewWidthProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.FloatingWindowStrategyProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetCanDrag.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetDefaultFloatingPreviewSize.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetFloatingPreviewHeight.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetFloatingPreviewLeft.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetFloatingPreviewTop.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetFloatingPreviewWidth.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetFloatingWindowStrategy.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetIsEnabled.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetIsShiftKeyDown.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetOverlay.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetPreview.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetShowsBottomGuide.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetShowsFillGuide.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetShowsGuide.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetShowsLeftGuide.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetShowsRightGuide.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetShowsTopGuide.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetTargetItem.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.GetTargetPosition.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.IsEnabledProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.IsShiftKeyDownProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.OverlayProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.PreviewProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.SetCanDrag.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.SetDefaultFloatingPreviewSize.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.SetIsEnabled.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.SetOverlay.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.SetTargetItem.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.SetTargetPosition.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.ShowsBottomGuideProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.ShowsFillGuideProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.ShowsGuideProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.ShowsLeftGuideProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.ShowsRightGuideProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.ShowsTopGuideProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.TargetItemProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.TargetPositionProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockManager.html │ ├── DevZest.Windows.Docking.Primitives.DockPaneControl.html │ ├── DevZest.Windows.Docking.Primitives.DockPaneControlOverlay.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClient.ArrangeOverride.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClient.DockControl.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClient.DockControlProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClient.Split.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClient.SplitProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClient.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.BottomSplitterHeight.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.BottomSplitterHeightProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.BottomTreeHeight.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.BottomTreeHeightProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsBottomGuideVisible.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsBottomGuideVisibleProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsDocumentGuideVisible.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsDocumentGuideVisibleProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsLeftGuideVisible.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsLeftGuideVisibleProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsRightGuideVisible.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsRightGuideVisibleProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsTopGuideVisible.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.IsTopGuideVisibleProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.LeftSplitterWidth.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.LeftSplitterWidthProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.LeftTreeWidth.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.LeftTreeWidthProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.OnApplyTemplate.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.RightSplitterWidth.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.RightSplitterWidthProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.RightTreeWidth.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.RightTreeWidthProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.SplitterSize.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.SplitterSizeProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.TopSplitterHeight.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.TopSplitterHeightProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.TopTreeHeight.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.TopTreeHeightProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeClientOverlay.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeControl.DockTree.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeControl.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.Child1.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.Child1Property.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.Child2.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.Child2Property.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.DockControl.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.DockControlProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.IsSplitterTopLeft.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.IsSplitterTopLeftProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.IsVisible.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.IsVisibleProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.Orientation.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.OrientationProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.Position.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.PositionProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.SplitterDistance.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.SplitterDistanceProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.ToString.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplit.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitControl.DockTreeSplit.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitControl.DockTreeSplitProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitControl.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitter.IsShiftKeyDown.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitter.OnMouseEnter.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitter.OnMouseLeave.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitter.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.DockTreeSplitter.html │ ├── DevZest.Windows.Docking.Primitives.DockWindow.DoubleClickCommand.html │ ├── DevZest.Windows.Docking.Primitives.DockWindow.DoubleClickCommandProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockWindow.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.DockWindow.OnPreviewMouseDown.html │ ├── DevZest.Windows.Docking.Primitives.DockWindow.html │ ├── DevZest.Windows.Docking.Primitives.DockWindowTab.DoubleClickCommand.html │ ├── DevZest.Windows.Docking.Primitives.DockWindowTab.DoubleClickCommandProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockWindowTab.IsContentTrimmed.html │ ├── DevZest.Windows.Docking.Primitives.DockWindowTab.IsContentTrimmedProperty.html │ ├── DevZest.Windows.Docking.Primitives.DockWindowTab.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.DockWindowTab.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTab.GetShowsIcon.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTab.OnMouseDown.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTab.OnMouseUp.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTab.SetShowsIcon.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTab.ShowsIconProperty.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTab.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabPanel.ArrangeOverride.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabPanel.MeasureOverride.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabPanel.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabStrip.GetContainerForItemOverride.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabStrip.IsItemItsOwnContainerOverride.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabStrip.IsTabTrimmed.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabStrip.IsTabTrimmedProperty.html │ ├── DevZest.Windows.Docking.Primitives.DocumentTabStrip.html │ ├── DevZest.Windows.Docking.Primitives.DocumentWindow.html │ ├── DevZest.Windows.Docking.Primitives.DropPosition.html │ ├── DevZest.Windows.Docking.Primitives.FloatingWindowStrategy.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.DropDown.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.DropDownItemStyle.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.DropDownItemStyleProperty.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.DropDownItemsSource.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.DropDownItemsSourceProperty.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.DropDownProperty.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.IsDropDownOpen.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.IsDropDownOpenProperty.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.OnMouseDown.html │ ├── DevZest.Windows.Docking.Primitives.InertButton.html │ ├── DevZest.Windows.Docking.Primitives.IsAutoHideValueConverter.Convert.html │ ├── DevZest.Windows.Docking.Primitives.IsAutoHideValueConverter.ConvertBack.html │ ├── DevZest.Windows.Docking.Primitives.IsAutoHideValueConverter.html │ ├── DevZest.Windows.Docking.Primitives.IsFloatingValueConverter.Convert.html │ ├── DevZest.Windows.Docking.Primitives.IsFloatingValueConverter.ConvertBack.html │ ├── DevZest.Windows.Docking.Primitives.IsFloatingValueConverter.html │ ├── DevZest.Windows.Docking.Primitives.NativeFloatingWindow.DoubleClickCommand.html │ ├── DevZest.Windows.Docking.Primitives.NativeFloatingWindow.DoubleClickCommandProperty.html │ ├── DevZest.Windows.Docking.Primitives.NativeFloatingWindow.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.NativeFloatingWindow.OnPropertyChanged.html │ ├── DevZest.Windows.Docking.Primitives.NativeFloatingWindow.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.AssociatedElement.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.AssociatedElementProperty.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.Content.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.ContentProperty.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.ContentTemplate.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.ContentTemplateProperty.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.ContentTemplateSelector.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.ContentTemplateSelectorProperty.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.CreateInstanceCore.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.FreezeCore.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.IsFloatingWindowPreview.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.IsFloatingWindowPreviewProperty.html │ ├── DevZest.Windows.Docking.Primitives.Overlay.html │ ├── DevZest.Windows.Docking.Primitives.PreviewOverlay.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.Background.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.BackgroundProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.BorderBrush.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.BorderBrushProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.BorderThickness.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.BorderThicknessProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.CornerRadius.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.CornerRadiusProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.GetLayoutClip.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.IsBottom.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.IsBottomProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.LeftAngle.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.LeftAngleProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.OnRender.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.RightAngle.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.RightAngleProperty.html │ ├── DevZest.Windows.Docking.Primitives.TabBorder.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindow.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowCaption.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTab.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTabPanel.ArrangeOverride.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTabPanel.MeasureOverride.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTabPanel.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTabStrip.GetContainerForItemOverride.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTabStrip.IsItemItsOwnContainerOverride.html │ ├── DevZest.Windows.Docking.Primitives.ToolWindowTabStrip.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.ActiveDocuments.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.ActiveToolWindows.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.DockControl.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.DockControlProperty.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.GetHotkey.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.HotkeyProperty.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.OnIsKeyboardFocusWithinChanged.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.SetHotkey.html │ ├── DevZest.Windows.Docking.Primitives.WindowSwitcher.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.ArrangeOverride.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.Child.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.GetVisualChild.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.LogicalChildren.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.MeasureOverride.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.VisualChildrenCount.html │ ├── DevZest.Windows.Docking.Primitives.WindowViewbox.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindow.DoubleClickCommand.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindow.DoubleClickCommandProperty.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindow.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindow.OnMouseRightButtonDown.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindow.OnPreviewMouseDown.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindow.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindowClient.DockControl.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindowClient.DockControlProperty.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindowClient.GetContainerForItemOverride.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindowClient.IsItemItsOwnContainerOverride.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindowClient.OnApplyTemplate.html │ ├── DevZest.Windows.Docking.Primitives.WpfFloatingWindowClient.html │ ├── DevZest.Windows.Docking.Primitives.html │ ├── DevZest.Windows.Docking.ShowAction.ProvideValue.html │ ├── DevZest.Windows.Docking.ShowAction.ShowMethod.html │ ├── DevZest.Windows.Docking.ShowAction.Source.html │ ├── DevZest.Windows.Docking.ShowAction.html │ ├── DevZest.Windows.Docking.ShowAsDockPositionAction.-ctor.html │ ├── DevZest.Windows.Docking.ShowAsDockPositionAction.DockPosition.html │ ├── DevZest.Windows.Docking.ShowAsDockPositionAction.html │ ├── DevZest.Windows.Docking.ShowAsFloatingAction.-ctor.html │ ├── DevZest.Windows.Docking.ShowAsFloatingAction.Height.html │ ├── DevZest.Windows.Docking.ShowAsFloatingAction.Left.html │ ├── DevZest.Windows.Docking.ShowAsFloatingAction.Top.html │ ├── DevZest.Windows.Docking.ShowAsFloatingAction.Width.html │ ├── DevZest.Windows.Docking.ShowAsFloatingAction.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.-ctor.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.AncestorLevel.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.IsAutoHide.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.IsSizeForTarget.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.Side.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.Size.html │ ├── DevZest.Windows.Docking.ShowAsSidePaneAction.html │ ├── DevZest.Windows.Docking.ShowAsTabbedAction.-ctor.html │ ├── DevZest.Windows.Docking.ShowAsTabbedAction.Index.html │ ├── DevZest.Windows.Docking.ShowAsTabbedAction.html │ ├── DevZest.Windows.Docking.ShowInDockTreeAction.IsFloating.html │ ├── DevZest.Windows.Docking.ShowInDockTreeAction.Target.html │ ├── DevZest.Windows.Docking.ShowInDockTreeAction.html │ ├── DevZest.Windows.Docking.SplitChildrenVisibility.html │ ├── DevZest.Windows.Docking.html │ ├── DevZest.Windows.DropDownButton.DropDown.html │ ├── DevZest.Windows.DropDownButton.DropDownProperty.html │ ├── DevZest.Windows.DropDownButton.IsDropDownOpen.html │ ├── DevZest.Windows.DropDownButton.IsDropDownOpenProperty.html │ ├── DevZest.Windows.DropDownButton.OnClick.html │ ├── DevZest.Windows.DropDownButton.OnMouseDown.html │ ├── DevZest.Windows.DropDownButton.html │ ├── DevZest.Windows.FallbackBehavior.html │ ├── DevZest.Windows.MapConverter.Convert.html │ ├── DevZest.Windows.MapConverter.ConvertBack.html │ ├── DevZest.Windows.MapConverter.FallbackBehavior.html │ ├── DevZest.Windows.MapConverter.FallbackBehaviorProperty.html │ ├── DevZest.Windows.MapConverter.Mappings.html │ ├── DevZest.Windows.MapConverter.html │ ├── DevZest.Windows.Mapping.-ctor.html │ ├── DevZest.Windows.Mapping.From.html │ ├── DevZest.Windows.Mapping.FromProperty.html │ ├── DevZest.Windows.Mapping.To.html │ ├── DevZest.Windows.Mapping.ToProperty.html │ ├── DevZest.Windows.Mapping.html │ ├── DevZest.Windows.ReverseCollectionViewSource.OnPropertyChanged.html │ ├── DevZest.Windows.ReverseCollectionViewSource.html │ ├── DevZest.Windows.ScrollButtonVisibilityConverter.Convert.html │ ├── DevZest.Windows.ScrollButtonVisibilityConverter.ConvertBack.html │ ├── DevZest.Windows.ScrollButtonVisibilityConverter.html │ ├── DevZest.Windows.SplitContainer.-ctor.html │ ├── DevZest.Windows.SplitContainer.ArrangeOverride.html │ ├── DevZest.Windows.SplitContainer.Background.html │ ├── DevZest.Windows.SplitContainer.BackgroundProperty.html │ ├── DevZest.Windows.SplitContainer.Child1.html │ ├── DevZest.Windows.SplitContainer.Child1MinSize.html │ ├── DevZest.Windows.SplitContainer.Child1MinSizeProperty.html │ ├── DevZest.Windows.SplitContainer.Child1Property.html │ ├── DevZest.Windows.SplitContainer.Child2.html │ ├── DevZest.Windows.SplitContainer.Child2MinSize.html │ ├── DevZest.Windows.SplitContainer.Child2MinSizeProperty.html │ ├── DevZest.Windows.SplitContainer.Child2Property.html │ ├── DevZest.Windows.SplitContainer.DragIncrement.html │ ├── DevZest.Windows.SplitContainer.DragIncrementProperty.html │ ├── DevZest.Windows.SplitContainer.GetVisualChild.html │ ├── DevZest.Windows.SplitContainer.IsPreviewVisible.html │ ├── DevZest.Windows.SplitContainer.IsPreviewVisibleProperty.html │ ├── DevZest.Windows.SplitContainer.IsSplitterTopLeft.html │ ├── DevZest.Windows.SplitContainer.IsSplitterTopLeftProperty.html │ ├── DevZest.Windows.SplitContainer.KeyboardIncrement.html │ ├── DevZest.Windows.SplitContainer.KeyboardIncrementProperty.html │ ├── DevZest.Windows.SplitContainer.LogicalChildren.html │ ├── DevZest.Windows.SplitContainer.MeasureOverride.html │ ├── DevZest.Windows.SplitContainer.OnKeyDown.html │ ├── DevZest.Windows.SplitContainer.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.SplitContainer.OnRender.html │ ├── DevZest.Windows.SplitContainer.Orientation.html │ ├── DevZest.Windows.SplitContainer.OrientationProperty.html │ ├── DevZest.Windows.SplitContainer.PreviewOffsetX.html │ ├── DevZest.Windows.SplitContainer.PreviewOffsetXProperty.html │ ├── DevZest.Windows.SplitContainer.PreviewOffsetY.html │ ├── DevZest.Windows.SplitContainer.PreviewOffsetYProperty.html │ ├── DevZest.Windows.SplitContainer.PreviewTemplate.html │ ├── DevZest.Windows.SplitContainer.PreviewTemplateProperty.html │ ├── DevZest.Windows.SplitContainer.ShowsPreview.html │ ├── DevZest.Windows.SplitContainer.ShowsPreviewProperty.html │ ├── DevZest.Windows.SplitContainer.SplitterDistance.html │ ├── DevZest.Windows.SplitContainer.SplitterDistanceProperty.html │ ├── DevZest.Windows.SplitContainer.SplitterPresenter.html │ ├── DevZest.Windows.SplitContainer.SplitterPresenterProperty.html │ ├── DevZest.Windows.SplitContainer.SplitterPresenterStyle.html │ ├── DevZest.Windows.SplitContainer.SplitterPresenterStyleProperty.html │ ├── DevZest.Windows.SplitContainer.SplitterTemplate.html │ ├── DevZest.Windows.SplitContainer.SplitterTemplateProperty.html │ ├── DevZest.Windows.SplitContainer.SplitterWidth.html │ ├── DevZest.Windows.SplitContainer.SplitterWidthProperty.html │ ├── DevZest.Windows.SplitContainer.VisualChildrenCount.html │ ├── DevZest.Windows.SplitContainer.html │ ├── DevZest.Windows.SplitterDistance.-ctor.html │ ├── DevZest.Windows.SplitterDistance.AutoPixel.html │ ├── DevZest.Windows.SplitterDistance.AutoStar.html │ ├── DevZest.Windows.SplitterDistance.Equals.html │ ├── DevZest.Windows.SplitterDistance.GetHashCode.html │ ├── DevZest.Windows.SplitterDistance.IsAbsolute.html │ ├── DevZest.Windows.SplitterDistance.IsAuto.html │ ├── DevZest.Windows.SplitterDistance.IsAutoPixel.html │ ├── DevZest.Windows.SplitterDistance.IsAutoStar.html │ ├── DevZest.Windows.SplitterDistance.IsStar.html │ ├── DevZest.Windows.SplitterDistance.ToString.html │ ├── DevZest.Windows.SplitterDistance.UnitType.html │ ├── DevZest.Windows.SplitterDistance.Value.html │ ├── DevZest.Windows.SplitterDistance.html │ ├── DevZest.Windows.SplitterDistance.op_Equality.html │ ├── DevZest.Windows.SplitterDistance.op_Inequality.html │ ├── DevZest.Windows.SplitterDistanceConverter.CanConvertFrom.html │ ├── DevZest.Windows.SplitterDistanceConverter.CanConvertTo.html │ ├── DevZest.Windows.SplitterDistanceConverter.ConvertFrom.html │ ├── DevZest.Windows.SplitterDistanceConverter.ConvertTo.html │ ├── DevZest.Windows.SplitterDistanceConverter.html │ ├── DevZest.Windows.SplitterUnitType.html │ ├── DevZest.Windows.StyleManager.GetIsAutoMerge.html │ ├── DevZest.Windows.StyleManager.IsAutoMergeProperty.html │ ├── DevZest.Windows.StyleManager.SetIsAutoMerge.html │ ├── DevZest.Windows.StyleManager.html │ ├── DevZest.Windows.WindowControl.ActualLeft.html │ ├── DevZest.Windows.WindowControl.ActualLeftProperty.html │ ├── DevZest.Windows.WindowControl.ActualTop.html │ ├── DevZest.Windows.WindowControl.ActualTopProperty.html │ ├── DevZest.Windows.WindowControl.EnsureVisibleLocation.html │ ├── DevZest.Windows.WindowControl.GetHotspot.html │ ├── DevZest.Windows.WindowControl.HotspotProperty.html │ ├── DevZest.Windows.WindowControl.Left.html │ ├── DevZest.Windows.WindowControl.LeftProperty.html │ ├── DevZest.Windows.WindowControl.OnMouseLeftButtonDown.html │ ├── DevZest.Windows.WindowControl.SetHotspot.html │ ├── DevZest.Windows.WindowControl.Top.html │ ├── DevZest.Windows.WindowControl.TopProperty.html │ ├── DevZest.Windows.WindowControl.html │ ├── DevZest.Windows.WindowHotspot.html │ ├── DevZest.Windows.WindowPanel.ArrangeOverride.html │ ├── DevZest.Windows.WindowPanel.GetDefaultLocation.html │ ├── DevZest.Windows.WindowPanel.MeasureOverride.html │ ├── DevZest.Windows.WindowPanel.html │ ├── DevZest.Windows.html │ ├── index.html │ └── toc.html ├── articles │ ├── detailed_window_hierarchy_and_customization.html │ ├── getting_started.html │ ├── implementing_undo_redo.html │ ├── intro.html │ ├── known_issues.html │ ├── programming_model.html │ ├── saving_and_loading_window_layout.html │ └── toc.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── DockSample1.jpg │ ├── DockSample2.jpg │ └── DockSample3.jpg ├── index.html ├── logo.svg ├── manifest.json ├── search-stopwords.json ├── styles │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ └── search-worker.js ├── toc.html └── xrefmap.yml └── docs_src ├── .gitignore ├── api └── .gitignore ├── articles ├── detailed_window_hierarchy_and_customization.md ├── getting_started.md ├── implementing_undo_redo.md ├── known_issues.md ├── programming_model.md ├── saving_and_loading_window_layout.md └── toc.yml ├── docfx.json ├── images ├── DockSample1.jpg ├── DockSample2.jpg └── DockSample3.jpg ├── index.md └── toc.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/.gitignore -------------------------------------------------------------------------------- /Deploy/AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/AssemblyVersion.cs -------------------------------------------------------------------------------- /Deploy/DevZest.WpfDocking/DevZest.WpfDocking.nuproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/DevZest.WpfDocking/DevZest.WpfDocking.nuproj -------------------------------------------------------------------------------- /Deploy/DevZest.WpfDocking/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/DevZest.WpfDocking/Readme.txt -------------------------------------------------------------------------------- /Deploy/NuGetPackageVersion.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/NuGetPackageVersion.props -------------------------------------------------------------------------------- /Deploy/VerGen.AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/VerGen.AssemblyVersion.cs -------------------------------------------------------------------------------- /Deploy/VerGen.NuGetPackageVersion.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/VerGen.NuGetPackageVersion.props -------------------------------------------------------------------------------- /Deploy/VerGen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/VerGen.bat -------------------------------------------------------------------------------- /Deploy/VerGen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/VerGen.ps1 -------------------------------------------------------------------------------- /Deploy/WpfDocking.Deploy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Deploy/WpfDocking.Deploy.sln -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Common/CSharp/AdornerManagerSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/AdornerManagerSample/App.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/AdornerManagerSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/AdornerManagerSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/DropDownButtonSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/DropDownButtonSample/App.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/DropDownButtonSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/DropDownButtonSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/ReverseCollectionViewSourceSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/ReverseCollectionViewSourceSample/App.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/SplitContainerSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/SplitContainerSample/App.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/SplitContainerSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/SplitContainerSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/WindowPanelAndWindowControlSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/WindowPanelAndWindowControlSample/App.xaml -------------------------------------------------------------------------------- /Samples/Common/CSharp/WpfDocking.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/CSharp/WpfDocking.Common.sln -------------------------------------------------------------------------------- /Samples/Common/VB/AdornerManagerSample/AdornerManagerSample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/AdornerManagerSample/AdornerManagerSample.vbproj -------------------------------------------------------------------------------- /Samples/Common/VB/AdornerManagerSample/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/AdornerManagerSample/Application.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/AdornerManagerSample/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/AdornerManagerSample/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Common/VB/AdornerManagerSample/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/AdornerManagerSample/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Common/VB/AdornerManagerSample/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/AdornerManagerSample/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Common/VB/AdornerManagerSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/AdornerManagerSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/DropDownButtonSample/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/DropDownButtonSample/Application.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/DropDownButtonSample/DropDownButtonSample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/DropDownButtonSample/DropDownButtonSample.vbproj -------------------------------------------------------------------------------- /Samples/Common/VB/DropDownButtonSample/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/DropDownButtonSample/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Common/VB/DropDownButtonSample/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/DropDownButtonSample/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Common/VB/DropDownButtonSample/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/DropDownButtonSample/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Common/VB/DropDownButtonSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/DropDownButtonSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/ReverseCollectionViewSourceSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/ReverseCollectionViewSourceSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/SplitContainerSample/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/SplitContainerSample/Application.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/SplitContainerSample/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/SplitContainerSample/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Common/VB/SplitContainerSample/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/SplitContainerSample/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Common/VB/SplitContainerSample/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/SplitContainerSample/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Common/VB/SplitContainerSample/SplitContainerSample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/SplitContainerSample/SplitContainerSample.vbproj -------------------------------------------------------------------------------- /Samples/Common/VB/SplitContainerSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/SplitContainerSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/WindowPanelAndWindowControlSample/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/WindowPanelAndWindowControlSample/Window1.xaml -------------------------------------------------------------------------------- /Samples/Common/VB/WpfDocking.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Common/VB/WpfDocking.Common.sln -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/App.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/BrowserDockSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/BrowserDockSample.csproj -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/Properties/app.manifest -------------------------------------------------------------------------------- /Samples/Docking/CSharp/BrowserDockSample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/BrowserDockSample/app.config -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/DockSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/DockSample.csproj -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Document.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Document.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Document.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Document.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/MainPage.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Output.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Output.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Output.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Output.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/PropertiesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/PropertiesWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/PropertiesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/PropertiesWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/Document.png -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/Output.png -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/Properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/Properties.png -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/SavedState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/SavedState.png -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/SolutionExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/SolutionExplorer.png -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/Thumbs.db -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Resources/Toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Resources/Toolbox.png -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/SavedLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/SavedLayout.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/SavedLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/SavedLayout.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/SolutionExplorer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/SolutionExplorer.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/SolutionExplorer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/SolutionExplorer.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Themes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Themes.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Themes/VS2010.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Themes/VS2010.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Welcome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Welcome.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/Welcome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/Welcome.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/XamlWriter.NamespaceCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/XamlWriter.NamespaceCache.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/XamlWriter.NamespaceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/XamlWriter.NamespaceMap.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockSample/XamlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockSample/XamlWriter.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/DockingSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/DockingSample.sln -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/App.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/QuickStart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/QuickStart.csproj -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/Window1.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/QuickStart/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/QuickStart/app.config -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes.csproj -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/Empty.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/Empty.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/ExpressionDark/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/ExpressionDark/Brushes.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/ExpressionDark/DockItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/ExpressionDark/DockItem.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/ExpressionDark/ToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/ExpressionDark/ToolWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/AutoHideClient.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/AutoHideClient.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/AutoHideTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/AutoHideTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/AutoHideWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/AutoHideWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/Brushes.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/DockControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/DockControl.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/DockGuide.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/DockGuide.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/DockTreeControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/DockTreeControl.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/DocumentTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/DocumentTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/DocumentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/DocumentWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/InertButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/InertButton.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/PreviewOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/PreviewOverlay.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/ToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/ToolWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/ToolWindowCaption.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/ToolWindowCaption.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/ToolWindowTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/ToolWindowTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/WindowSwitcher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/WindowSwitcher.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/Themes/Themes/VS2010/WpfFloatingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/Themes/Themes/VS2010/WpfFloatingWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/App.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/WindowDockSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/WindowDockSample.csproj -------------------------------------------------------------------------------- /Samples/Docking/CSharp/WindowDockSample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/CSharp/WindowDockSample/app.config -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/Application.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/BrowserDockSample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/BrowserDockSample.vbproj -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/VB/BrowserDockSample/My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/BrowserDockSample/My Project/app.manifest -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/DockSample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/DockSample.vbproj -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Document.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Document.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Document.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Document.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/MainPage.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/MainPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/MainPage.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Output.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Output.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Output.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Output.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/PropertiesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/PropertiesWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/PropertiesWindow.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/PropertiesWindow.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Resources/Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Resources/Document.png -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Resources/Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Resources/Output.png -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Resources/Properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Resources/Properties.png -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Resources/SavedState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Resources/SavedState.png -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Resources/SolutionExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Resources/SolutionExplorer.png -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Resources/Toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Resources/Toolbox.png -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/SavedLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/SavedLayout.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/SavedLayout.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/SavedLayout.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/SolutionExplorer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/SolutionExplorer.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/SolutionExplorer.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/SolutionExplorer.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Themes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Themes.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Themes/ExpressionDark/Hyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Themes/ExpressionDark/Hyperlink.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Themes/VS2010.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Themes/VS2010.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Welcome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Welcome.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/Welcome.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/Welcome.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/XamlWriter.NamespaceCache.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/XamlWriter.NamespaceCache.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/XamlWriter.NamespaceMap.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/XamlWriter.NamespaceMap.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockSample/XamlWriter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockSample/XamlWriter.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/DockingSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/DockingSample.sln -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/Application.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/QuickStart.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/QuickStart.vbproj -------------------------------------------------------------------------------- /Samples/Docking/VB/QuickStart/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/QuickStart/Window1.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes.vbproj -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/Empty.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/Empty.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/AutoHideClient.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/AutoHideClient.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/AutoHideTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/AutoHideTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/AutoHideWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/AutoHideWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/Brushes.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/DockControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/DockControl.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/DockItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/DockItem.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/DocumentTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/DocumentTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/DocumentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/DocumentWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/InertButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/InertButton.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/PreviewOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/PreviewOverlay.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/ToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/ToolWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/ToolWindowTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/ToolWindowTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/ExpressionDark/WindowSwitcher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/ExpressionDark/WindowSwitcher.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/AutoHideClient.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/AutoHideClient.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/AutoHideTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/AutoHideTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/AutoHideWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/AutoHideWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/Brushes.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DockControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DockControl.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DockGuide.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DockGuide.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DockPaneControlOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DockPaneControlOverlay.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DockTreeClientOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DockTreeClientOverlay.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DockTreeControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DockTreeControl.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DocumentTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DocumentTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/DocumentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/DocumentWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/InertButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/InertButton.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/NativeFloatingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/NativeFloatingWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/PreviewOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/PreviewOverlay.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/ToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/ToolWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/ToolWindowCaption.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/ToolWindowCaption.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/ToolWindowTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/ToolWindowTab.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/WindowSwitcher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/WindowSwitcher.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/Themes/Themes/VS2010/WpfFloatingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/Themes/Themes/VS2010/WpfFloatingWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/Application.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/MainWindow.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/MainWindow.xaml.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/Docking/VB/WindowDockSample/WindowDockSample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Samples/Docking/VB/WindowDockSample/WindowDockSample.vbproj -------------------------------------------------------------------------------- /Src/Dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Dictionary.xml -------------------------------------------------------------------------------- /Src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Src/Internal/BooleanBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Internal/BooleanBoxes.cs -------------------------------------------------------------------------------- /Src/Internal/Extension.IsClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Internal/Extension.IsClose.cs -------------------------------------------------------------------------------- /Src/Internal/Windows/DragHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Internal/Windows/DragHandlerBase.cs -------------------------------------------------------------------------------- /Src/Internal/Windows/Extension.IsClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Internal/Windows/Extension.IsClose.cs -------------------------------------------------------------------------------- /Src/Internal/Windows/KeyboardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Internal/Windows/KeyboardManager.cs -------------------------------------------------------------------------------- /Src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/AutoHideClient.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/AutoHideClient.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/AutoHideStrip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/AutoHideStrip.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/AutoHideTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/AutoHideTab.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/AutoHideWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/AutoHideWindow.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/Brushes.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockControl.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockItem.TabContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockItem.TabContextMenu.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockItem.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockPane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockPane.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockPaneControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockPaneControl.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockPaneControlOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockPaneControlOverlay.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockPaneSplit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockPaneSplit.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockTree.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockTree.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockTreeClient.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockTreeClient.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockTreeClientOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockTreeClientOverlay.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockTreeControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockTreeControl.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockTreeSplit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockTreeSplit.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockTreeSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockTreeSplitter.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DockWindow.InertButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DockWindow.InertButton.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DocumentTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DocumentTab.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DocumentTabStrip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DocumentTabStrip.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/DocumentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/DocumentWindow.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/Empty.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/Empty.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/Images.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/Images.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/InertButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/InertButton.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/NativeFloatingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/NativeFloatingWindow.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/PreviewOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/PreviewOverlay.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/SplitContainer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/SplitContainer.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/ToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/ToolWindow.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/ToolWindowCaption.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/ToolWindowCaption.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/ToolWindowTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/ToolWindowTab.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/ToolWindowTabStrip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/ToolWindowTabStrip.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/WindowSwitcher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/WindowSwitcher.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/WpfFloatingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/WpfFloatingWindow.xaml -------------------------------------------------------------------------------- /Src/Themes/Generic/WpfFloatingWindowClient.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Themes/Generic/WpfFloatingWindowClient.xaml -------------------------------------------------------------------------------- /Src/Windows/AdornerManager.DecoratorAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/AdornerManager.DecoratorAdorner.cs -------------------------------------------------------------------------------- /Src/Windows/AdornerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/AdornerManager.cs -------------------------------------------------------------------------------- /Src/Windows/CollectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/CollectionUtil.cs -------------------------------------------------------------------------------- /Src/Windows/ConditionalUriExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/ConditionalUriExtension.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/AllowedDockTreePositions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/AllowedDockTreePositions.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockCommands.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockControl.CommandUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockControl.CommandUnit.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockControl.ResizeDockTreeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockControl.ResizeDockTreeCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockControl.ResizeDockTreeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockControl.ResizeDockTreeData.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockControl.UpdateDockTreeZOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockControl.UpdateDockTreeZOrderCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockControl.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockControlTreePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockControlTreePosition.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.CloseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.CloseCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.CloseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.CloseEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.CommandBase.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.DeselectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.DeselectCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.DeselectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.DeselectEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.HideCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.HideCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.HideEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.HideEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.SelectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.SelectCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.SelectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.SelectEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowActionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowActionEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsDockPositionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsDockPositionCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsDockPositionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsDockPositionEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsFloatingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsFloatingCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsFloatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsFloatingEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsSidePaneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsSidePaneCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsSidePaneEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsSidePaneEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsTabbedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsTabbedCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowAsTabbedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowAsTabbedEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowCloseCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowCloseCommandBase.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ShowCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ShowCommandBase.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ToggleAutoHideCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ToggleAutoHideCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.ToggleAutoHideEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.ToggleAutoHideEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.UpdateAutoHideSizeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.UpdateAutoHideSizeCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.UpdateAutoHideSizeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.UpdateAutoHideSizeData.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItem.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItemCollection.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItemReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItemReference.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItemShowMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItemShowMethod.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItemStateChangeMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItemStateChangeMethod.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockItemStateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockItemStateEventArgs.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockLayout.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockLayoutAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockLayoutAdapter.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPane.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPaneCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPaneCollection.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPaneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPaneManager.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPaneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPaneNode.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPaneNodeStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPaneNodeStruct.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPaneSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPaneSplit.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPosition.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockPositionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockPositionHelper.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockTree.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockTreePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockTreePosition.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockTreeZOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockTreeZOrder.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/DockTreeZOrderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/DockTreeZOrderConverter.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/FloatingWindow.UpdateBoundsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/FloatingWindow.UpdateBoundsCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/FloatingWindow.UpdateBoundsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/FloatingWindow.UpdateBoundsData.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/FloatingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/FloatingWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/FloatingWindowCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/FloatingWindowCollection.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ICommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/IDockItemUndoRedoReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/IDockItemUndoRedoReference.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/IValueChangedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/IValueChangedCommand.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/AutoHide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/AutoHide.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/AutoHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/AutoHideAnimation.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/AutoHideClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/AutoHideClient.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/AutoHideStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/AutoHideStrip.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/AutoHideTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/AutoHideTab.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/AutoHideWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/AutoHideWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockManager.DragHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockManager.DragHandler.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockManager.NestedDockEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockManager.NestedDockEntry.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockManager.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockManager.Target.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockManager.WindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockManager.WindowHandler.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockManager.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockPaneControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockPaneControl.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockPaneControlOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockPaneControlOverlay.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockPanePreviewPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockPanePreviewPlacement.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockTreeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockTreeClient.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockTreeClientOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockTreeClientOverlay.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockTreeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockTreeControl.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockTreeSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockTreeSplit.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockTreeSplitControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockTreeSplitControl.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockTreeSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockTreeSplitter.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DockWindowTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DockWindowTab.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DocumentTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DocumentTab.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DocumentTabPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DocumentTabPanel.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DocumentTabStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DocumentTabStrip.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DocumentWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DocumentWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/DropPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/DropPosition.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/FloatingWindowAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/FloatingWindowAdorner.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/FloatingWindowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/FloatingWindowStrategy.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/IDragDropSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/IDragDropSource.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/InertButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/InertButton.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/IsAutoHideValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/IsAutoHideValueConverter.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/IsFloatingValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/IsFloatingValueConverter.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/NativeFloatingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/NativeFloatingWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/NativeFloatingWindowPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/NativeFloatingWindowPreview.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/Overlay.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/PreviewOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/PreviewOverlay.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/RelativePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/RelativePoint.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/TabBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/TabBorder.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/ToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/ToolWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/ToolWindowCaption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/ToolWindowCaption.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/ToolWindowTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/ToolWindowTab.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/ToolWindowTabPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/ToolWindowTabPanel.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/ToolWindowTabStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/ToolWindowTabStrip.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/WindowSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/WindowSwitcher.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/WindowViewbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/WindowViewbox.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/WpfFloatingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/WpfFloatingWindow.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/Primitives/WpfFloatingWindowClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/Primitives/WpfFloatingWindowClient.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/SR.Designer.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/SR.resx -------------------------------------------------------------------------------- /Src/Windows/Docking/ShowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ShowAction.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/ShowAsDockPositionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ShowAsDockPositionAction.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/ShowAsFloatingAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ShowAsFloatingAction.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/ShowAsSidePaneAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ShowAsSidePaneAction.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/ShowAsTabbedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ShowAsTabbedAction.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/ShowInDockTreeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/ShowInDockTreeAction.cs -------------------------------------------------------------------------------- /Src/Windows/Docking/SplitChildrenVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Docking/SplitChildrenVisibility.cs -------------------------------------------------------------------------------- /Src/Windows/DropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/DropDownButton.cs -------------------------------------------------------------------------------- /Src/Windows/FallbackBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/FallbackBehavior.cs -------------------------------------------------------------------------------- /Src/Windows/IWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/IWindow.cs -------------------------------------------------------------------------------- /Src/Windows/MapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/MapConverter.cs -------------------------------------------------------------------------------- /Src/Windows/Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/Mapping.cs -------------------------------------------------------------------------------- /Src/Windows/OrientationBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/OrientationBoxes.cs -------------------------------------------------------------------------------- /Src/Windows/RecycleReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/RecycleReference.cs -------------------------------------------------------------------------------- /Src/Windows/ReverseCollectionViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/ReverseCollectionViewSource.cs -------------------------------------------------------------------------------- /Src/Windows/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SR.Designer.cs -------------------------------------------------------------------------------- /Src/Windows/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SR.resx -------------------------------------------------------------------------------- /Src/Windows/ScrollButtonVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/ScrollButtonVisibilityConverter.cs -------------------------------------------------------------------------------- /Src/Windows/SplitContainer.DragHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SplitContainer.DragHandler.cs -------------------------------------------------------------------------------- /Src/Windows/SplitContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SplitContainer.cs -------------------------------------------------------------------------------- /Src/Windows/SplitterDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SplitterDistance.cs -------------------------------------------------------------------------------- /Src/Windows/SplitterDistanceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SplitterDistanceConverter.cs -------------------------------------------------------------------------------- /Src/Windows/SplitterUnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/SplitterUnitType.cs -------------------------------------------------------------------------------- /Src/Windows/StyleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/StyleManager.cs -------------------------------------------------------------------------------- /Src/Windows/UndoRedoStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/UndoRedoStack.cs -------------------------------------------------------------------------------- /Src/Windows/WindowControl.DragHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/WindowControl.DragHandler.cs -------------------------------------------------------------------------------- /Src/Windows/WindowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/WindowControl.cs -------------------------------------------------------------------------------- /Src/Windows/WindowHotspot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/WindowHotspot.cs -------------------------------------------------------------------------------- /Src/Windows/WindowPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/Windows/WindowPanel.cs -------------------------------------------------------------------------------- /Src/WpfDocking.Deploy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/WpfDocking.Deploy.csproj -------------------------------------------------------------------------------- /Src/WpfDocking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/Src/WpfDocking.csproj -------------------------------------------------------------------------------- /WpfDocking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/WpfDocking.sln -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | wpfdocking.devzest.com -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.AdornerManager.AdornerProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.AdornerManager.AdornerProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.AdornerManager.GetAdorner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.AdornerManager.GetAdorner.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.AdornerManager.GetAdornerTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.AdornerManager.GetAdornerTemplate.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.AdornerManager.SetAdorner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.AdornerManager.SetAdorner.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.AdornerManager.SetAdornerTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.AdornerManager.SetAdornerTemplate.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.AdornerManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.AdornerManager.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ConditionalUriExtension.Condition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ConditionalUriExtension.Condition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ConditionalUriExtension.False.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ConditionalUriExtension.False.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ConditionalUriExtension.ProvideValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ConditionalUriExtension.ProvideValue.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ConditionalUriExtension.True.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ConditionalUriExtension.True.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ConditionalUriExtension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ConditionalUriExtension.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.AllowedDockTreePositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.AllowedDockTreePositions.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.MakeFloating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.MakeFloating.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.PerformClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.PerformClose.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.Redo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.Redo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.Show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.Show.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.ToggleAutoHide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.ToggleAutoHide.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.Undo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.Undo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockCommands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockCommands.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.ActiveDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.ActiveDocument.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.ActiveItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.ActiveItem.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.BeginUndoUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.BeginUndoUnit.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.BottomDockTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.BottomDockTree.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.CanRedo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.CanRedo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.CanUndo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.CanUndo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.ClearUndo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.ClearUndo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.DockItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.DockItems.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.DockTreeZOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.DockTreeZOrder.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.Documents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.Documents.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.EndUndoUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.EndUndoUnit.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.FocusedItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.FocusedItem.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.LeftDockTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.LeftDockTree.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.Load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.Load.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.MaxUndoLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.MaxUndoLevel.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.Panes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.Panes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.Redo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.Redo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.RightDockTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.RightDockTree.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.Save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.Save.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.TopDockTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.TopDockTree.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.Undo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.Undo.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.UndoUnitLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.UndoUnitLevel.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockControlTreePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockControlTreePosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Activate.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.AutoHideSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.AutoHideSize.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.CanToggleAutoHide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.CanToggleAutoHide.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.CanToggleFloating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.CanToggleFloating.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Close.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Closing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Closing.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Description.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.DockControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.DockControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.DockPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.DockPosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.DockTreePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.DockTreePosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.FirstPane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.FirstPane.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.FirstPaneProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.FirstPaneProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Hide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Hide.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Icon.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IconProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IconProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IsActiveDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IsActiveDocument.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IsActiveItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IsActiveItem.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IsAutoHide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IsAutoHide.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IsHidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IsHidden.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IsHiddenProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IsHiddenProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.IsSelected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.IsSelected.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.MeasureOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.MeasureOverride.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.OnApplyTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.OnApplyTemplate.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.OnClosing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.OnClosing.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.OnStateChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.OnStateChanged.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.OnStateChanging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.OnStateChanging.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.PerformClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.PerformClose.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Save.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.SecondPane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.SecondPane.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Show.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.ShowAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.ShowAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.StateChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.StateChanged.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.StateChanging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.StateChanging.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.TabContextMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.TabContextMenu.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.TabText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.TabText.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.TabTextProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.TabTextProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.Title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.Title.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.TitleProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.TitleProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.ToggleAutoHide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.ToggleAutoHide.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.ToggleFloating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.ToggleFloating.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.UndoRedoReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.UndoRedoReference.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItem.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemCollection.Add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemCollection.Add.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemCollection.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemReference.Target.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemReference.Target.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemReference.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemShowMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemShowMethod.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemStateChangeMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemStateChangeMethod.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockItemStateEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockItemStateEventArgs.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockLayout.DockItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockLayout.DockItems.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockLayout.DockTreeZOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockLayout.DockTreeZOrder.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockLayout.ShowActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockLayout.ShowActions.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockLayout.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPane.ActiveItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPane.ActiveItems.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPane.Items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPane.Items.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPane.SelectedItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPane.SelectedItem.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPane.VisibleItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPane.VisibleItems.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPane.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneCollection.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneNode.DockControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneNode.DockControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneNode.DockPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneNode.DockPosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneNode.Parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneNode.Parent.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneNode.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneSplit.Child1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneSplit.Child1.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneSplit.Child2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneSplit.Child2.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneSplit.Orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneSplit.Orientation.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneSplit.ToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneSplit.ToString.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPaneSplit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPaneSplit.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockPosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.ActivePanes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.ActivePanes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.AutoHideItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.AutoHideItems.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.AutoHidePanes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.AutoHidePanes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.DockControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.DockControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.FloatingWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.FloatingWindow.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.IsVisible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.IsVisible.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.IsVisibleProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.IsVisibleProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.Panes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.Panes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.Position.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.PositionProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.PositionProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.RootNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.RootNode.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.RootNodeProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.RootNodeProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.ToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.ToString.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.VisiblePanes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.VisiblePanes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTree.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreePosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.Default.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.Equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.Equals.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.First.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.First.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.Fourth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.Fourth.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.GetHashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.GetHashCode.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.IndexOf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.IndexOf.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.Item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.Item.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.Second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.Second.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.SendToBack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.SendToBack.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.Third.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.Third.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.ToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.ToString.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrder.op_Equality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrder.op_Equality.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.DockTreeZOrderConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.DockTreeZOrderConverter.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.ActivePanes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.ActivePanes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.CanBeNative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.CanBeNative.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.DockControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.DockControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.DockTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.DockTree.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.Height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.Height.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.IsVisible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.IsVisible.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.Left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.Left.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.Panes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.Panes.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.Top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.Top.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.TopProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.TopProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.Width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.Width.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindow.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.FloatingWindowCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.FloatingWindowCollection.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.IDockItemUndoRedoReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.IDockItemUndoRedoReference.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.AutoHide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.AutoHide.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.AutoHideClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.AutoHideClient.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.AutoHideStrip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.AutoHideStrip.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.AutoHideTab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.AutoHideTab.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.AutoHideWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.AutoHideWindow.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockManager.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockPaneControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockPaneControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockTreeClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockTreeClient.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockTreeControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockTreeControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockTreeSplit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockTreeSplit.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockWindow.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DockWindowTab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DockWindowTab.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DocumentTab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DocumentTab.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DocumentWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DocumentWindow.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.DropPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.DropPosition.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.InertButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.InertButton.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.Overlay.Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.Overlay.Content.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.Overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.Overlay.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.PreviewOverlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.PreviewOverlay.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.TabBorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.TabBorder.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.ToolWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.ToolWindow.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.ToolWindowTab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.ToolWindowTab.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.WindowSwitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.WindowSwitcher.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.WindowViewbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.WindowViewbox.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.Primitives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.Primitives.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAction.ProvideValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAction.ProvideValue.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAction.ShowMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAction.ShowMethod.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAction.Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAction.Source.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsDockPositionAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsDockPositionAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.Left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.Left.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.Top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.Top.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.Width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.Width.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsFloatingAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.Side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.Side.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.Size.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsSidePaneAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsTabbedAction.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsTabbedAction.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsTabbedAction.Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsTabbedAction.Index.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowAsTabbedAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowAsTabbedAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.ShowInDockTreeAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.ShowInDockTreeAction.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.SplitChildrenVisibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.SplitChildrenVisibility.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Docking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Docking.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.DropDownButton.DropDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.DropDownButton.DropDown.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.DropDownButton.DropDownProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.DropDownButton.DropDownProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.DropDownButton.IsDropDownOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.DropDownButton.IsDropDownOpen.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.DropDownButton.OnClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.DropDownButton.OnClick.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.DropDownButton.OnMouseDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.DropDownButton.OnMouseDown.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.DropDownButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.DropDownButton.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.FallbackBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.FallbackBehavior.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.MapConverter.Convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.MapConverter.Convert.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.MapConverter.ConvertBack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.MapConverter.ConvertBack.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.MapConverter.FallbackBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.MapConverter.FallbackBehavior.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.MapConverter.Mappings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.MapConverter.Mappings.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.MapConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.MapConverter.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Mapping.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Mapping.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Mapping.From.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Mapping.From.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Mapping.FromProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Mapping.FromProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Mapping.To.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Mapping.To.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Mapping.ToProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Mapping.ToProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.Mapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.Mapping.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ReverseCollectionViewSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ReverseCollectionViewSource.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.ScrollButtonVisibilityConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.ScrollButtonVisibilityConverter.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.ArrangeOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.ArrangeOverride.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Background.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.BackgroundProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.BackgroundProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Child1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Child1.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Child1MinSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Child1MinSize.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Child1Property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Child1Property.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Child2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Child2.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Child2MinSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Child2MinSize.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Child2Property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Child2Property.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.DragIncrement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.DragIncrement.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.GetVisualChild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.GetVisualChild.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.IsPreviewVisible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.IsPreviewVisible.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.IsSplitterTopLeft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.IsSplitterTopLeft.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.KeyboardIncrement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.KeyboardIncrement.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.LogicalChildren.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.LogicalChildren.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.MeasureOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.MeasureOverride.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.OnKeyDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.OnKeyDown.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.OnRender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.OnRender.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.Orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.Orientation.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.OrientationProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.OrientationProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.PreviewOffsetX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.PreviewOffsetX.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.PreviewOffsetY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.PreviewOffsetY.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.PreviewTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.PreviewTemplate.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.ShowsPreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.ShowsPreview.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.SplitterDistance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.SplitterDistance.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.SplitterPresenter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.SplitterPresenter.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.SplitterTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.SplitterTemplate.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.SplitterWidth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.SplitterWidth.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.VisualChildrenCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.VisualChildrenCount.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitContainer.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.-ctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.-ctor.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.AutoPixel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.AutoPixel.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.AutoStar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.AutoStar.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.Equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.Equals.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.GetHashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.GetHashCode.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.IsAbsolute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.IsAbsolute.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.IsAuto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.IsAuto.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.IsAutoPixel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.IsAutoPixel.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.IsAutoStar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.IsAutoStar.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.IsStar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.IsStar.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.ToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.ToString.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.UnitType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.UnitType.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.Value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.Value.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.op_Equality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.op_Equality.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistance.op_Inequality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistance.op_Inequality.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterDistanceConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterDistanceConverter.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.SplitterUnitType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.SplitterUnitType.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.StyleManager.GetIsAutoMerge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.StyleManager.GetIsAutoMerge.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.StyleManager.IsAutoMergeProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.StyleManager.IsAutoMergeProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.StyleManager.SetIsAutoMerge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.StyleManager.SetIsAutoMerge.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.StyleManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.StyleManager.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.ActualLeft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.ActualLeft.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.ActualLeftProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.ActualLeftProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.ActualTop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.ActualTop.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.ActualTopProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.ActualTopProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.GetHotspot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.GetHotspot.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.HotspotProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.HotspotProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.Left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.Left.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.LeftProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.LeftProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.SetHotspot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.SetHotspot.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.Top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.Top.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.TopProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.TopProperty.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowControl.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowHotspot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowHotspot.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowPanel.ArrangeOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowPanel.ArrangeOverride.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowPanel.GetDefaultLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowPanel.GetDefaultLocation.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowPanel.MeasureOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowPanel.MeasureOverride.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.WindowPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.WindowPanel.html -------------------------------------------------------------------------------- /docs/api/DevZest.Windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/DevZest.Windows.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/articles/detailed_window_hierarchy_and_customization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/detailed_window_hierarchy_and_customization.html -------------------------------------------------------------------------------- /docs/articles/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/getting_started.html -------------------------------------------------------------------------------- /docs/articles/implementing_undo_redo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/implementing_undo_redo.html -------------------------------------------------------------------------------- /docs/articles/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/intro.html -------------------------------------------------------------------------------- /docs/articles/known_issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/known_issues.html -------------------------------------------------------------------------------- /docs/articles/programming_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/programming_model.html -------------------------------------------------------------------------------- /docs/articles/saving_and_loading_window_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/saving_and_loading_window_layout.html -------------------------------------------------------------------------------- /docs/articles/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/articles/toc.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/images/DockSample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/images/DockSample1.jpg -------------------------------------------------------------------------------- /docs/images/DockSample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/images/DockSample2.jpg -------------------------------------------------------------------------------- /docs/images/DockSample3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/images/DockSample3.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /docs_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/.gitignore -------------------------------------------------------------------------------- /docs_src/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/api/.gitignore -------------------------------------------------------------------------------- /docs_src/articles/detailed_window_hierarchy_and_customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/detailed_window_hierarchy_and_customization.md -------------------------------------------------------------------------------- /docs_src/articles/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/getting_started.md -------------------------------------------------------------------------------- /docs_src/articles/implementing_undo_redo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/implementing_undo_redo.md -------------------------------------------------------------------------------- /docs_src/articles/known_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/known_issues.md -------------------------------------------------------------------------------- /docs_src/articles/programming_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/programming_model.md -------------------------------------------------------------------------------- /docs_src/articles/saving_and_loading_window_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/saving_and_loading_window_layout.md -------------------------------------------------------------------------------- /docs_src/articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/articles/toc.yml -------------------------------------------------------------------------------- /docs_src/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/docfx.json -------------------------------------------------------------------------------- /docs_src/images/DockSample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/images/DockSample1.jpg -------------------------------------------------------------------------------- /docs_src/images/DockSample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/images/DockSample2.jpg -------------------------------------------------------------------------------- /docs_src/images/DockSample3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/images/DockSample3.jpg -------------------------------------------------------------------------------- /docs_src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/index.md -------------------------------------------------------------------------------- /docs_src/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevZest/WpfDocking/HEAD/docs_src/toc.yml --------------------------------------------------------------------------------