├── .gitattributes ├── .gitignore ├── Assets ├── Pro.png └── Standard.png ├── README.md ├── XamlBrewer.Uwp.Composition.ShapesSample.sln └── XamlBrewer.Uwp.Composition.ShapesSample ├── App.xaml ├── App.xaml.cs ├── Assets ├── Background.jpg ├── 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 ├── Controls ├── Clock.xaml ├── Clock.xaml.cs ├── CompositorExtensions.cs ├── PathBuilderExtensions.cs ├── ProClock.xaml ├── ProClock.xaml.cs └── UIElementExtensions.cs ├── Mvvm ├── BindableBase.cs └── DelegateCommand.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Services ├── Activation │ ├── Activation.cs │ └── ActivationExtensions.cs ├── AnimatedSplashscreen │ ├── CompositionImage.cs │ ├── PageExtensions.cs │ └── SurfaceLoader.cs ├── Icons │ ├── Icon.cs │ └── Icons.xaml ├── Navigation │ └── Navigation.cs └── Theming │ ├── Theme.cs │ └── Theme.xaml ├── ViewModels ├── MenuItem.cs ├── ShellViewModel.cs └── ViewModelBase.cs ├── Views ├── AboutPage.xaml ├── AboutPage.xaml.cs ├── AdvancedPage.xaml ├── AdvancedPage.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Shell.xaml └── Shell.xaml.cs └── XamlBrewer.Uwp.Composition.ShapesSample.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/Assets/Pro.png -------------------------------------------------------------------------------- /Assets/Standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/Assets/Standard.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/README.md -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample.sln -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/App.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/App.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/Background.jpg -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/Clock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/Clock.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/Clock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/Clock.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/CompositorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/CompositorExtensions.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/PathBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/PathBuilderExtensions.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/ProClock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/ProClock.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/ProClock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/ProClock.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Controls/UIElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Controls/UIElementExtensions.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Mvvm/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Mvvm/BindableBase.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Mvvm/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Mvvm/DelegateCommand.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Package.appxmanifest -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Properties/Default.rd.xml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Activation/Activation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Activation/Activation.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Activation/ActivationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Activation/ActivationExtensions.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/AnimatedSplashscreen/CompositionImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/AnimatedSplashscreen/CompositionImage.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/AnimatedSplashscreen/PageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/AnimatedSplashscreen/PageExtensions.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/AnimatedSplashscreen/SurfaceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/AnimatedSplashscreen/SurfaceLoader.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Icons/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Icons/Icon.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Icons/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Icons/Icons.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Navigation/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Navigation/Navigation.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Theming/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Theming/Theme.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Services/Theming/Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Services/Theming/Theme.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/ViewModels/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/ViewModels/MenuItem.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/AboutPage.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/AdvancedPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/AdvancedPage.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/AdvancedPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/AdvancedPage.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/MainPage.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/Shell.xaml -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/Views/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/Views/Shell.xaml.cs -------------------------------------------------------------------------------- /XamlBrewer.Uwp.Composition.ShapesSample/XamlBrewer.Uwp.Composition.ShapesSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XamlBrewer/UWP-Composition-Shape-Visuals-Sample/HEAD/XamlBrewer.Uwp.Composition.ShapesSample/XamlBrewer.Uwp.Composition.ShapesSample.csproj --------------------------------------------------------------------------------