├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── Images └── Preview.png ├── LICENSE ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties └── launchSettings.json ├── README.md ├── TransparentHelper.cs ├── WinUI3TransparentBackground.csproj ├── WinUI3TransparentBackground.sln ├── WindowsCompositionHelper.cs └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Images/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Images/Preview.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Package.appxmanifest -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/README.md -------------------------------------------------------------------------------- /TransparentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/TransparentHelper.cs -------------------------------------------------------------------------------- /WinUI3TransparentBackground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/WinUI3TransparentBackground.csproj -------------------------------------------------------------------------------- /WinUI3TransparentBackground.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/WinUI3TransparentBackground.sln -------------------------------------------------------------------------------- /WindowsCompositionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/WindowsCompositionHelper.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/WinUI3TransparentBackground/HEAD/app.manifest --------------------------------------------------------------------------------