├── .gitattributes ├── .github └── workflows │ └── release.yml ├── .gitignore ├── Assets ├── EsattoCSCommon.targets └── public.snk ├── Itp.WinFormsAppBar.Demo ├── DragThumb.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Itp.WinFormsAppBar.Demo.csproj └── Program.cs ├── Itp.WinFormsAppBar ├── AppBarForm.cs ├── Itp.WinFormsAppBar.csproj ├── MonitorInfo.cs ├── NativeMethods.cs └── SystemEventsSafeAppContext.cs ├── LICENSE.txt ├── Readme.md ├── UndockSample ├── App.config ├── App.xaml ├── App.xaml.cs ├── DockableWindowControl.cs ├── Itp.WpfAppBar.UndockSample.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WinFormsApp1 ├── Form1.Designer.cs ├── Form1.cs ├── Program.cs └── WinFormsApp1.csproj ├── WpfAppBar.sln ├── WpfAppBar ├── AppBarWindow.cs ├── Itp.WpfAppBar.csproj ├── MonitorInfo.cs ├── NativeMethods.cs └── Properties │ └── AssemblyInfo.cs └── WpfAppBarDemo ├── App.config ├── App.xaml ├── App.xaml.cs ├── Itp.WpfAppBar.Demo.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/EsattoCSCommon.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Assets/EsattoCSCommon.targets -------------------------------------------------------------------------------- /Assets/public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Assets/public.snk -------------------------------------------------------------------------------- /Itp.WinFormsAppBar.Demo/DragThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar.Demo/DragThumb.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar.Demo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar.Demo/Form1.Designer.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar.Demo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar.Demo/Form1.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar.Demo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar.Demo/Form1.resx -------------------------------------------------------------------------------- /Itp.WinFormsAppBar.Demo/Itp.WinFormsAppBar.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar.Demo/Itp.WinFormsAppBar.Demo.csproj -------------------------------------------------------------------------------- /Itp.WinFormsAppBar.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar.Demo/Program.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar/AppBarForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar/AppBarForm.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar/Itp.WinFormsAppBar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar/Itp.WinFormsAppBar.csproj -------------------------------------------------------------------------------- /Itp.WinFormsAppBar/MonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar/MonitorInfo.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar/NativeMethods.cs -------------------------------------------------------------------------------- /Itp.WinFormsAppBar/SystemEventsSafeAppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Itp.WinFormsAppBar/SystemEventsSafeAppContext.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/Readme.md -------------------------------------------------------------------------------- /UndockSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/App.config -------------------------------------------------------------------------------- /UndockSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/App.xaml -------------------------------------------------------------------------------- /UndockSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/App.xaml.cs -------------------------------------------------------------------------------- /UndockSample/DockableWindowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/DockableWindowControl.cs -------------------------------------------------------------------------------- /UndockSample/Itp.WpfAppBar.UndockSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/Itp.WpfAppBar.UndockSample.csproj -------------------------------------------------------------------------------- /UndockSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/MainWindow.xaml -------------------------------------------------------------------------------- /UndockSample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UndockSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UndockSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UndockSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/Properties/Resources.resx -------------------------------------------------------------------------------- /UndockSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UndockSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/UndockSample/Properties/Settings.settings -------------------------------------------------------------------------------- /WinFormsApp1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WinFormsApp1/Form1.Designer.cs -------------------------------------------------------------------------------- /WinFormsApp1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WinFormsApp1/Form1.cs -------------------------------------------------------------------------------- /WinFormsApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WinFormsApp1/Program.cs -------------------------------------------------------------------------------- /WinFormsApp1/WinFormsApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WinFormsApp1/WinFormsApp1.csproj -------------------------------------------------------------------------------- /WpfAppBar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBar.sln -------------------------------------------------------------------------------- /WpfAppBar/AppBarWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBar/AppBarWindow.cs -------------------------------------------------------------------------------- /WpfAppBar/Itp.WpfAppBar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBar/Itp.WpfAppBar.csproj -------------------------------------------------------------------------------- /WpfAppBar/MonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBar/MonitorInfo.cs -------------------------------------------------------------------------------- /WpfAppBar/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBar/NativeMethods.cs -------------------------------------------------------------------------------- /WpfAppBar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfAppBarDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/App.config -------------------------------------------------------------------------------- /WpfAppBarDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/App.xaml -------------------------------------------------------------------------------- /WpfAppBarDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/App.xaml.cs -------------------------------------------------------------------------------- /WpfAppBarDemo/Itp.WpfAppBar.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/Itp.WpfAppBar.Demo.csproj -------------------------------------------------------------------------------- /WpfAppBarDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/MainWindow.xaml -------------------------------------------------------------------------------- /WpfAppBarDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfAppBarDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfAppBarDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WpfAppBarDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfAppBarDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WpfAppBarDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /WpfAppBarDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgaffigan/WpfAppBar/HEAD/WpfAppBarDemo/app.manifest --------------------------------------------------------------------------------