├── .gitattributes ├── .gitignore ├── Infrastructure ├── Business │ └── DockView.cs ├── IDockAware.cs ├── Infrastructure.csproj ├── KnownRegionNames.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── LICENSE.txt ├── ModuleA ├── ModuleA.csproj ├── ModuleAModule.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ViewModels │ └── ViewAViewModel.cs └── Views │ ├── ViewA.xaml │ └── ViewA.xaml.cs ├── XamDockManagerPrismRegionAdapter.sln └── XamDockManagerPrismRegionAdapter ├── App.xaml ├── App.xaml.cs ├── Prism ├── TabGroupPaneRegionActiveAwareBehavior.cs └── TabGroupPaneRegionAdapter.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── licenses.licx ├── ViewModels └── ShellViewModel.cs ├── Views ├── Shell.xaml └── Shell.xaml.cs └── XamDockManagerPrismRegionAdapter.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /Infrastructure/Business/DockView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Business/DockView.cs -------------------------------------------------------------------------------- /Infrastructure/IDockAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/IDockAware.cs -------------------------------------------------------------------------------- /Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /Infrastructure/KnownRegionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/KnownRegionNames.cs -------------------------------------------------------------------------------- /Infrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Infrastructure/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Infrastructure/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Properties/Resources.resx -------------------------------------------------------------------------------- /Infrastructure/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Infrastructure/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/Infrastructure/Properties/Settings.settings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /ModuleA/ModuleA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/ModuleA.csproj -------------------------------------------------------------------------------- /ModuleA/ModuleAModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/ModuleAModule.cs -------------------------------------------------------------------------------- /ModuleA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ModuleA/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ModuleA/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Properties/Resources.resx -------------------------------------------------------------------------------- /ModuleA/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ModuleA/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Properties/Settings.settings -------------------------------------------------------------------------------- /ModuleA/ViewModels/ViewAViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/ViewModels/ViewAViewModel.cs -------------------------------------------------------------------------------- /ModuleA/Views/ViewA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Views/ViewA.xaml -------------------------------------------------------------------------------- /ModuleA/Views/ViewA.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/ModuleA/Views/ViewA.xaml.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter.sln -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/App.xaml -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/App.xaml.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Prism/TabGroupPaneRegionActiveAwareBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Prism/TabGroupPaneRegionActiveAwareBehavior.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Prism/TabGroupPaneRegionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Prism/TabGroupPaneRegionAdapter.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Properties/Resources.resx -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Properties/Settings.settings -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Views/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Views/Shell.xaml -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/Views/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/Views/Shell.xaml.cs -------------------------------------------------------------------------------- /XamDockManagerPrismRegionAdapter/XamDockManagerPrismRegionAdapter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianlagunas/xamDockManager-Region-Adapter/HEAD/XamDockManagerPrismRegionAdapter/XamDockManagerPrismRegionAdapter.csproj --------------------------------------------------------------------------------