├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE ├── README.md ├── UWPResourcesGallery.sln ├── docs ├── Screenshot_Acrylicbrushdesignerpage.png ├── Screenshot_Iconspage.png ├── Screenshot_Startpage.png ├── Screenshot_Systembrushespage.png ├── Screenshot_Systemcolorspage.png └── Screenshot_UniversalAPIContractsPage.png ├── src ├── UWPResourcesGallery.ResourceModel │ ├── AcrylicBrushSampleCodeFactory.cs │ ├── Assets │ │ ├── IconList.json │ │ ├── SystemBrushes.json │ │ ├── SystemColors.json │ │ └── UniversalContracts.json │ ├── Brushes │ │ ├── SystemBrush.cs │ │ ├── SystemBrushDefinitionFactory.cs │ │ └── SystemBrushItemSource.cs │ ├── Colors │ │ ├── SystemColor.cs │ │ └── SystemColorsItemSource.cs │ ├── GenericItemsSource.cs │ ├── IFilterable.cs │ ├── Icon │ │ ├── IconItem.cs │ │ └── IconItemSource.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ResourceModel.rd.xml │ ├── UWPResourcesGallery.ResourceModel.csproj │ └── WindowsVersionContracts │ │ ├── UniversalPlatformContract.cs │ │ ├── UniversalPlatformContractQueryFactory.cs │ │ ├── UniversalPlatformVersion.cs │ │ └── UniversalPlatformVersionSource.cs └── UWPResourcesGallery │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppNavigation.xaml │ ├── AppNavigation.xaml.cs │ ├── Assets │ ├── SMPTE_Color_Bars.png │ └── Tiles │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── Logo.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Common │ ├── SampleTemplateProvider.cs │ ├── StandardConverter.cs │ └── ThemeHelper.cs │ ├── Controls │ ├── Common │ │ ├── CodeSample.xaml │ │ ├── CodeSample.xaml.cs │ │ ├── DualThemePresenter.cs │ │ ├── DualThemePresenter.xaml │ │ ├── PageHeader.xaml │ │ └── PageHeader.xaml.cs │ └── Templates │ │ ├── IconItemControl.xaml │ │ ├── IconItemControl.xaml.cs │ │ ├── SystemBrushInformation.xaml │ │ ├── SystemBrushInformation.xaml.cs │ │ ├── SystemBrushPresenter.xaml │ │ ├── SystemBrushPresenter.xaml.cs │ │ ├── SystemColorInformation.xaml │ │ ├── SystemColorInformation.xaml.cs │ │ ├── SystemColorPresenter.xaml │ │ ├── SystemColorPresenter.xaml.cs │ │ ├── UniversalPlatformContractPresenter.xaml │ │ ├── UniversalPlatformContractPresenter.xaml.cs │ │ ├── UniversalPlatformVersionPresenter.xaml │ │ └── UniversalPlatformVersionPresenter.xaml.cs │ ├── DebugPackage.appxmanifest │ ├── Package.appxmanifest │ ├── Pages │ ├── AcrylicDesignerPage.xaml │ ├── AcrylicDesignerPage.xaml.cs │ ├── IconDetailPage.xaml │ ├── IconDetailPage.xaml.cs │ ├── IconsListPage.xaml │ ├── IconsListPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── StartPage.xaml │ ├── StartPage.xaml.cs │ ├── SystemBrushesPage.xaml │ ├── SystemBrushesPage.xaml.cs │ ├── SystemColorsPage.xaml │ ├── SystemColorsPage.xaml.cs │ ├── UniversalContractsPage.xaml │ └── UniversalContractsPage.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── Styles │ ├── CustomStyles.xaml │ └── WinUINewStylePolyfills.xaml │ ├── UWPResourcesGallery.csproj │ └── UWPResourcesGallery_TemporaryKey.pfx └── tests ├── UWPResourcesGallery.AppInteractionTests ├── TestHelper.cs ├── TestRunInitializer.cs ├── Tests │ ├── AcrylicBrushDesignerPageTests.cs │ ├── BasePageTest.cs │ ├── GeneralAppTests.cs │ ├── IconsPageTests.cs │ ├── StartPageTests.cs │ ├── SystemBrushesPageTests.cs │ ├── SystemColorsPageTests.cs │ └── UniversalContractsPageTests.cs └── UWPResourcesGallery.AppInteractionTests.csproj ├── UWPResourcesGallery.Controls.Tests ├── 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 ├── CodeBehindTests │ └── ConverterTests.cs ├── ControlsTestPage.xaml ├── ControlsTestPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── TestsDefault.rd.xml ├── UITests │ ├── CodeSampleTests.cs │ ├── DualThemePresenterTests.cs │ ├── PageHeaderTests.cs │ ├── SystemColorInformationTests.cs │ └── UniversalPlatformContractPresenterTests.cs ├── UWPResourcesGallery.Controls.Tests.csproj ├── UWPResourcesGallery.Controls.Tests_TemporaryKey.pfx ├── UnitTestApp.xaml └── UnitTestApp.xaml.cs └── UWPResourcesGallery.ResoureModel.Tests ├── 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 └── testdata.json ├── FactoryTests ├── AcrylicBrushSampleCodeFactoryTests.cs ├── SystemBrushDefinitionFactoryTests.cs └── UniversalPlatformContractQueryFactoryTests.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── SourceTests ├── GenericItemsSourceTests.cs ├── IconSourceTests.cs ├── SystemBrushSourceTests.cs ├── SystemColorSourceTests.cs └── UniversalPlatformVersionSourceTests.cs ├── UWPResourcesGallery.ResoureModel.Tests.csproj ├── UWPResourcesGallery.ResoureModel.Tests_TemporaryKey.pfx ├── UnitTestApp.xaml └── UnitTestApp.xaml.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/README.md -------------------------------------------------------------------------------- /UWPResourcesGallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/UWPResourcesGallery.sln -------------------------------------------------------------------------------- /docs/Screenshot_Acrylicbrushdesignerpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/docs/Screenshot_Acrylicbrushdesignerpage.png -------------------------------------------------------------------------------- /docs/Screenshot_Iconspage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/docs/Screenshot_Iconspage.png -------------------------------------------------------------------------------- /docs/Screenshot_Startpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/docs/Screenshot_Startpage.png -------------------------------------------------------------------------------- /docs/Screenshot_Systembrushespage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/docs/Screenshot_Systembrushespage.png -------------------------------------------------------------------------------- /docs/Screenshot_Systemcolorspage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/docs/Screenshot_Systemcolorspage.png -------------------------------------------------------------------------------- /docs/Screenshot_UniversalAPIContractsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/docs/Screenshot_UniversalAPIContractsPage.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/AcrylicBrushSampleCodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/AcrylicBrushSampleCodeFactory.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Assets/IconList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Assets/IconList.json -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Assets/SystemBrushes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Assets/SystemBrushes.json -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Assets/SystemColors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Assets/SystemColors.json -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Assets/UniversalContracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Assets/UniversalContracts.json -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Brushes/SystemBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Brushes/SystemBrush.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Brushes/SystemBrushDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Brushes/SystemBrushDefinitionFactory.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Brushes/SystemBrushItemSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Brushes/SystemBrushItemSource.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Colors/SystemColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Colors/SystemColor.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Colors/SystemColorsItemSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Colors/SystemColorsItemSource.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/GenericItemsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/GenericItemsSource.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/IFilterable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/IFilterable.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Icon/IconItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Icon/IconItem.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Icon/IconItemSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Icon/IconItemSource.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/Properties/ResourceModel.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/Properties/ResourceModel.rd.xml -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/UWPResourcesGallery.ResourceModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/UWPResourcesGallery.ResourceModel.csproj -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformContract.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformContractQueryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformContractQueryFactory.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformVersion.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformVersionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery.ResourceModel/WindowsVersionContracts/UniversalPlatformVersionSource.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/App.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/App.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/AppNavigation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/AppNavigation.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/AppNavigation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/AppNavigation.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/SMPTE_Color_Bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/SMPTE_Color_Bars.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Logo.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Assets/Tiles/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Common/SampleTemplateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Common/SampleTemplateProvider.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Common/StandardConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Common/StandardConverter.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Common/ThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Common/ThemeHelper.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Common/CodeSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Common/CodeSample.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Common/CodeSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Common/CodeSample.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Common/DualThemePresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Common/DualThemePresenter.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Common/DualThemePresenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Common/DualThemePresenter.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Common/PageHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Common/PageHeader.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Common/PageHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Common/PageHeader.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/IconItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/IconItemControl.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/IconItemControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/IconItemControl.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemBrushInformation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemBrushInformation.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemBrushInformation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemBrushInformation.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemBrushPresenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemBrushPresenter.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemBrushPresenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemBrushPresenter.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemColorInformation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemColorInformation.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemColorInformation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemColorInformation.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemColorPresenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemColorPresenter.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/SystemColorPresenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/SystemColorPresenter.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/UniversalPlatformContractPresenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/UniversalPlatformContractPresenter.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/UniversalPlatformContractPresenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/UniversalPlatformContractPresenter.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/UniversalPlatformVersionPresenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/UniversalPlatformVersionPresenter.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Controls/Templates/UniversalPlatformVersionPresenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Controls/Templates/UniversalPlatformVersionPresenter.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/DebugPackage.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/DebugPackage.appxmanifest -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Package.appxmanifest -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/AcrylicDesignerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/AcrylicDesignerPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/AcrylicDesignerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/AcrylicDesignerPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/IconDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/IconDetailPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/IconDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/IconDetailPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/IconsListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/IconsListPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/IconsListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/IconsListPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/StartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/StartPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/StartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/StartPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/SystemBrushesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/SystemBrushesPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/SystemBrushesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/SystemBrushesPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/SystemColorsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/SystemColorsPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/SystemColorsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/SystemColorsPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/UniversalContractsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/UniversalContractsPage.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Pages/UniversalContractsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Pages/UniversalContractsPage.xaml.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Styles/CustomStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Styles/CustomStyles.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/Styles/WinUINewStylePolyfills.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/Styles/WinUINewStylePolyfills.xaml -------------------------------------------------------------------------------- /src/UWPResourcesGallery/UWPResourcesGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/UWPResourcesGallery.csproj -------------------------------------------------------------------------------- /src/UWPResourcesGallery/UWPResourcesGallery_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/src/UWPResourcesGallery/UWPResourcesGallery_TemporaryKey.pfx -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/TestHelper.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/TestRunInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/TestRunInitializer.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/AcrylicBrushDesignerPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/AcrylicBrushDesignerPageTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/BasePageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/BasePageTest.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/GeneralAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/GeneralAppTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/IconsPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/IconsPageTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/StartPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/StartPageTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/SystemBrushesPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/SystemBrushesPageTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/SystemColorsPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/SystemColorsPageTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/Tests/UniversalContractsPageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/Tests/UniversalContractsPageTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.AppInteractionTests/UWPResourcesGallery.AppInteractionTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.AppInteractionTests/UWPResourcesGallery.AppInteractionTests.csproj -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/CodeBehindTests/ConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/CodeBehindTests/ConverterTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/ControlsTestPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/ControlsTestPage.xaml -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/ControlsTestPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/ControlsTestPage.xaml.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Package.appxmanifest -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/Properties/TestsDefault.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/Properties/TestsDefault.rd.xml -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UITests/CodeSampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UITests/CodeSampleTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UITests/DualThemePresenterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UITests/DualThemePresenterTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UITests/PageHeaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UITests/PageHeaderTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UITests/SystemColorInformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UITests/SystemColorInformationTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UITests/UniversalPlatformContractPresenterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UITests/UniversalPlatformContractPresenterTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UWPResourcesGallery.Controls.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UWPResourcesGallery.Controls.Tests.csproj -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UWPResourcesGallery.Controls.Tests_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UWPResourcesGallery.Controls.Tests_TemporaryKey.pfx -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UnitTestApp.xaml -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.Controls.Tests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.Controls.Tests/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Assets/testdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Assets/testdata.json -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/FactoryTests/AcrylicBrushSampleCodeFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/FactoryTests/AcrylicBrushSampleCodeFactoryTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/FactoryTests/SystemBrushDefinitionFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/FactoryTests/SystemBrushDefinitionFactoryTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/FactoryTests/UniversalPlatformContractQueryFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/FactoryTests/UniversalPlatformContractQueryFactoryTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Package.appxmanifest -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/Properties/Default.rd.xml -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/GenericItemsSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/GenericItemsSourceTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/IconSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/IconSourceTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/SystemBrushSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/SystemBrushSourceTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/SystemColorSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/SystemColorSourceTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/UniversalPlatformVersionSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/SourceTests/UniversalPlatformVersionSourceTests.cs -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/UWPResourcesGallery.ResoureModel.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/UWPResourcesGallery.ResoureModel.Tests.csproj -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/UWPResourcesGallery.ResoureModel.Tests_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/UWPResourcesGallery.ResoureModel.Tests_TemporaryKey.pfx -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/UnitTestApp.xaml -------------------------------------------------------------------------------- /tests/UWPResourcesGallery.ResoureModel.Tests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelwgn/UWP-Resources-Gallery/HEAD/tests/UWPResourcesGallery.ResoureModel.Tests/UnitTestApp.xaml.cs --------------------------------------------------------------------------------