├── images
├── ss.png
└── ss2.png
├── Mntone.SvgForXaml
├── Mntone.SvgForXaml.Shared
│ ├── Interfaces
│ │ ├── ICssValue.cs
│ │ ├── IElement.cs
│ │ ├── ISvgLocatable.cs
│ │ ├── ISvgTransformable.cs
│ │ ├── ISvgStylable.cs
│ │ └── INode.cs
│ ├── Primitives
│ │ ├── SvgFillRuleType.cs
│ │ ├── SvgStrokeLineCapType.cs
│ │ ├── SvgStrokeLineJoinType.cs
│ │ ├── SvgStopColorType.cs
│ │ ├── SvgPaintType.cs
│ │ ├── RgbColor.cs
│ │ ├── SvgFillRule.cs
│ │ ├── SvgIri.cs
│ │ ├── SvgStopColor.cs
│ │ ├── SvgPoint.cs
│ │ ├── SvgStrokeLineCap.cs
│ │ ├── SvgStrokeLineJoin.cs
│ │ ├── SvgPaint.cs
│ │ ├── SvgPointCollection.cs
│ │ ├── SvgUnitType.cs
│ │ ├── SvgTransformCollection.cs
│ │ ├── SvgRect.cs
│ │ └── SvgMatrix.cs
│ ├── Themes
│ │ └── Generic.xaml
│ ├── Path
│ │ ├── SvgPathSegmentClosePath.cs
│ │ ├── SvgPathSegmentCollection.cs
│ │ ├── SvgPathSegment.cs
│ │ ├── SvgPathSegmentLineTo.cs
│ │ ├── SvgPathSegmentMoveTo.cs
│ │ ├── SvgPathSegmentLineToVertical.cs
│ │ ├── SvgPathSegmentLineToHorizontal.cs
│ │ ├── SvgPathSegmentCurveToQuadraticSmooth.cs
│ │ └── SvgPathSegmentCurveToQuadratic.cs
│ ├── Internal
│ │ ├── SvgTransformableHelper.cs
│ │ ├── LinqExtensions.cs
│ │ ├── SvgLocatableHelper.cs
│ │ └── SvgStylableHelper.cs
│ ├── UI
│ │ └── Xaml
│ │ │ └── SvgImage.xaml
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Gradients
│ │ ├── SvgSpreadMethodType.cs
│ │ ├── SvgStopElement.cs
│ │ ├── SvgRadialGradientElement.cs
│ │ └── SvgLinearGradientElement.cs
│ ├── SvgTitleElement.cs
│ ├── SvgSymbolElement.cs
│ ├── Mntone.SvgForXaml.Shared.shproj
│ ├── SvgDescriptionElement.cs
│ ├── SvgSvgElement.cs
│ ├── TransformSession.cs
│ ├── SvgGroupElement.cs
│ └── SvgDefinitionsElement.cs
├── Mntone.SvgForXaml.Windows
│ └── packages.config
├── Mntone.SvgForXaml.WindowsPhone
│ └── packages.config
├── Mntone.SvgForXaml.WindowsUniversal
│ ├── project.json
│ └── Properties
│ │ └── Mntone.SvgForXaml.rd.xml
└── nuget-build
│ ├── wpa81
│ └── Mntone.SvgForXaml.targets
│ ├── uap10.0
│ └── Mntone.SvgForXaml.targets
│ └── win81
│ └── Mntone.SvgForXaml.targets
├── .editorconfig
├── Mntone.SvgForXaml.DemoApp
├── Mntone.SvgForXaml.DemoApp.Windows
│ ├── Assets
│ │ ├── Logo.scale-100.png
│ │ ├── SmallLogo.scale-100.png
│ │ ├── StoreLogo.scale-100.png
│ │ └── SplashScreen.scale-100.png
│ ├── Mntone.SvgForXaml.DemoApp.Windows_TemporaryKey.pfx
│ ├── packages.config
│ └── Package.appxmanifest
├── Mntone.SvgForXaml.DemoApp.WindowsPhone
│ ├── Assets
│ │ ├── Logo.scale-240.png
│ │ ├── SmallLogo.scale-240.png
│ │ ├── StoreLogo.scale-240.png
│ │ ├── WideLogo.scale-240.png
│ │ ├── SplashScreen.scale-240.png
│ │ └── Square71x71Logo.scale-240.png
│ └── packages.config
├── Mntone.SvgForXaml.DemoApp.Shared
│ ├── ApplicationInsights.config
│ ├── App.xaml
│ ├── Assets
│ │ ├── test1.svg
│ │ ├── test2.svg
│ │ ├── test4.svg
│ │ └── test3.svg
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Mntone.SvgForXaml.DemoApp.Shared.shproj
│ └── MainPage.xaml
└── Mntone.SvgForXaml.DemoApp.WindowsUniversal
│ ├── Assets
│ ├── StoreLogo.scale-100.png
│ ├── StoreLogo.scale-125.png
│ ├── StoreLogo.scale-150.png
│ ├── StoreLogo.scale-160.png
│ ├── StoreLogo.scale-200.png
│ ├── StoreLogo.scale-225.png
│ ├── StoreLogo.scale-250.png
│ ├── StoreLogo.scale-300.png
│ ├── StoreLogo.scale-400.png
│ ├── Tile71x71.scale-100.png
│ ├── Tile71x71.scale-125.png
│ ├── Tile71x71.scale-150.png
│ ├── Tile71x71.scale-160.png
│ ├── Tile71x71.scale-200.png
│ ├── Tile71x71.scale-225.png
│ ├── Tile71x71.scale-250.png
│ ├── Tile71x71.scale-300.png
│ ├── Tile71x71.scale-400.png
│ ├── AppList44x44.scale-100.png
│ ├── AppList44x44.scale-125.png
│ ├── AppList44x44.scale-150.png
│ ├── AppList44x44.scale-160.png
│ ├── AppList44x44.scale-200.png
│ ├── AppList44x44.scale-225.png
│ ├── AppList44x44.scale-250.png
│ ├── AppList44x44.scale-300.png
│ ├── AppList44x44.scale-400.png
│ ├── SplashScreen.scale-100.png
│ ├── SplashScreen.scale-125.png
│ ├── SplashScreen.scale-150.png
│ ├── SplashScreen.scale-160.png
│ ├── SplashScreen.scale-200.png
│ ├── SplashScreen.scale-225.png
│ ├── SplashScreen.scale-250.png
│ ├── SplashScreen.scale-300.png
│ ├── SplashScreen.scale-400.png
│ ├── Tile150x150.scale-100.png
│ ├── Tile150x150.scale-125.png
│ ├── Tile150x150.scale-150.png
│ ├── Tile150x150.scale-160.png
│ ├── Tile150x150.scale-200.png
│ ├── Tile150x150.scale-225.png
│ ├── Tile150x150.scale-250.png
│ ├── Tile150x150.scale-300.png
│ ├── Tile150x150.scale-400.png
│ ├── Tile310x150.scale-100.png
│ ├── Tile310x150.scale-125.png
│ ├── Tile310x150.scale-150.png
│ ├── Tile310x150.scale-160.png
│ ├── Tile310x150.scale-200.png
│ ├── Tile310x150.scale-225.png
│ ├── Tile310x150.scale-250.png
│ ├── Tile310x150.scale-300.png
│ ├── Tile310x150.scale-400.png
│ ├── Tile310x310.scale-100.png
│ ├── Tile310x310.scale-125.png
│ ├── Tile310x310.scale-150.png
│ ├── Tile310x310.scale-160.png
│ ├── Tile310x310.scale-200.png
│ ├── Tile310x310.scale-225.png
│ ├── Tile310x310.scale-250.png
│ ├── Tile310x310.scale-300.png
│ ├── Tile310x310.scale-400.png
│ ├── AppList44x44.targetsize-104.png
│ ├── AppList44x44.targetsize-108.png
│ ├── AppList44x44.targetsize-112.png
│ ├── AppList44x44.targetsize-120.png
│ ├── AppList44x44.targetsize-128.png
│ ├── AppList44x44.targetsize-132.png
│ ├── AppList44x44.targetsize-144.png
│ ├── AppList44x44.targetsize-156.png
│ ├── AppList44x44.targetsize-16.png
│ ├── AppList44x44.targetsize-160.png
│ ├── AppList44x44.targetsize-168.png
│ ├── AppList44x44.targetsize-180.png
│ ├── AppList44x44.targetsize-192.png
│ ├── AppList44x44.targetsize-20.png
│ ├── AppList44x44.targetsize-224.png
│ ├── AppList44x44.targetsize-24.png
│ ├── AppList44x44.targetsize-256.png
│ ├── AppList44x44.targetsize-28.png
│ ├── AppList44x44.targetsize-288.png
│ ├── AppList44x44.targetsize-30.png
│ ├── AppList44x44.targetsize-32.png
│ ├── AppList44x44.targetsize-320.png
│ ├── AppList44x44.targetsize-352.png
│ ├── AppList44x44.targetsize-36.png
│ ├── AppList44x44.targetsize-384.png
│ ├── AppList44x44.targetsize-40.png
│ ├── AppList44x44.targetsize-416.png
│ ├── AppList44x44.targetsize-42.png
│ ├── AppList44x44.targetsize-44.png
│ ├── AppList44x44.targetsize-448.png
│ ├── AppList44x44.targetsize-48.png
│ ├── AppList44x44.targetsize-480.png
│ ├── AppList44x44.targetsize-512.png
│ ├── AppList44x44.targetsize-52.png
│ ├── AppList44x44.targetsize-54.png
│ ├── AppList44x44.targetsize-56.png
│ ├── AppList44x44.targetsize-576.png
│ ├── AppList44x44.targetsize-60.png
│ ├── AppList44x44.targetsize-64.png
│ ├── AppList44x44.targetsize-640.png
│ ├── AppList44x44.targetsize-66.png
│ ├── AppList44x44.targetsize-704.png
│ ├── AppList44x44.targetsize-72.png
│ ├── AppList44x44.targetsize-768.png
│ ├── AppList44x44.targetsize-78.png
│ ├── AppList44x44.targetsize-80.png
│ ├── AppList44x44.targetsize-832.png
│ ├── AppList44x44.targetsize-84.png
│ ├── AppList44x44.targetsize-88.png
│ ├── AppList44x44.targetsize-896.png
│ ├── AppList44x44.targetsize-90.png
│ ├── AppList44x44.targetsize-96.png
│ ├── AppList44x44.targetsize-960.png
│ ├── AppList44x44.targetsize-1024.png
│ ├── StoreLogo.scale-100_contrast-black.png
│ ├── StoreLogo.scale-100_contrast-white.png
│ ├── StoreLogo.scale-125_contrast-black.png
│ ├── StoreLogo.scale-125_contrast-white.png
│ ├── StoreLogo.scale-150_contrast-black.png
│ ├── StoreLogo.scale-150_contrast-white.png
│ ├── StoreLogo.scale-160_contrast-black.png
│ ├── StoreLogo.scale-160_contrast-white.png
│ ├── StoreLogo.scale-200_contrast-black.png
│ ├── StoreLogo.scale-200_contrast-white.png
│ ├── StoreLogo.scale-225_contrast-black.png
│ ├── StoreLogo.scale-225_contrast-white.png
│ ├── StoreLogo.scale-250_contrast-black.png
│ ├── StoreLogo.scale-250_contrast-white.png
│ ├── StoreLogo.scale-300_contrast-black.png
│ ├── StoreLogo.scale-300_contrast-white.png
│ ├── StoreLogo.scale-400_contrast-black.png
│ ├── StoreLogo.scale-400_contrast-white.png
│ ├── Tile71x71.scale-100_contrast-black.png
│ ├── Tile71x71.scale-100_contrast-white.png
│ ├── Tile71x71.scale-125_contrast-black.png
│ ├── Tile71x71.scale-125_contrast-white.png
│ ├── Tile71x71.scale-150_contrast-black.png
│ ├── Tile71x71.scale-150_contrast-white.png
│ ├── Tile71x71.scale-160_contrast-black.png
│ ├── Tile71x71.scale-160_contrast-white.png
│ ├── Tile71x71.scale-200_contrast-black.png
│ ├── Tile71x71.scale-200_contrast-white.png
│ ├── Tile71x71.scale-225_contrast-black.png
│ ├── Tile71x71.scale-225_contrast-white.png
│ ├── Tile71x71.scale-250_contrast-black.png
│ ├── Tile71x71.scale-250_contrast-white.png
│ ├── Tile71x71.scale-300_contrast-black.png
│ ├── Tile71x71.scale-300_contrast-white.png
│ ├── Tile71x71.scale-400_contrast-black.png
│ ├── Tile71x71.scale-400_contrast-white.png
│ ├── AppList44x44.scale-100_contrast-black.png
│ ├── AppList44x44.scale-100_contrast-white.png
│ ├── AppList44x44.scale-125_contrast-black.png
│ ├── AppList44x44.scale-125_contrast-white.png
│ ├── AppList44x44.scale-150_contrast-black.png
│ ├── AppList44x44.scale-150_contrast-white.png
│ ├── AppList44x44.scale-160_contrast-black.png
│ ├── AppList44x44.scale-160_contrast-white.png
│ ├── AppList44x44.scale-200_contrast-black.png
│ ├── AppList44x44.scale-200_contrast-white.png
│ ├── AppList44x44.scale-225_contrast-black.png
│ ├── AppList44x44.scale-225_contrast-white.png
│ ├── AppList44x44.scale-250_contrast-black.png
│ ├── AppList44x44.scale-250_contrast-white.png
│ ├── AppList44x44.scale-300_contrast-black.png
│ ├── AppList44x44.scale-300_contrast-white.png
│ ├── AppList44x44.scale-400_contrast-black.png
│ ├── AppList44x44.scale-400_contrast-white.png
│ ├── SplashScreen.scale-100_contrast-black.png
│ ├── SplashScreen.scale-100_contrast-white.png
│ ├── SplashScreen.scale-125_contrast-black.png
│ ├── SplashScreen.scale-125_contrast-white.png
│ ├── SplashScreen.scale-150_contrast-black.png
│ ├── SplashScreen.scale-150_contrast-white.png
│ ├── SplashScreen.scale-160_contrast-black.png
│ ├── SplashScreen.scale-160_contrast-white.png
│ ├── SplashScreen.scale-200_contrast-black.png
│ ├── SplashScreen.scale-200_contrast-white.png
│ ├── SplashScreen.scale-225_contrast-black.png
│ ├── SplashScreen.scale-225_contrast-white.png
│ ├── SplashScreen.scale-250_contrast-black.png
│ ├── SplashScreen.scale-250_contrast-white.png
│ ├── SplashScreen.scale-300_contrast-black.png
│ ├── SplashScreen.scale-300_contrast-white.png
│ ├── SplashScreen.scale-400_contrast-black.png
│ ├── SplashScreen.scale-400_contrast-white.png
│ ├── Tile150x150.scale-100_contrast-black.png
│ ├── Tile150x150.scale-100_contrast-white.png
│ ├── Tile150x150.scale-125_contrast-black.png
│ ├── Tile150x150.scale-125_contrast-white.png
│ ├── Tile150x150.scale-150_contrast-black.png
│ ├── Tile150x150.scale-150_contrast-white.png
│ ├── Tile150x150.scale-160_contrast-black.png
│ ├── Tile150x150.scale-160_contrast-white.png
│ ├── Tile150x150.scale-200_contrast-black.png
│ ├── Tile150x150.scale-200_contrast-white.png
│ ├── Tile150x150.scale-225_contrast-black.png
│ ├── Tile150x150.scale-225_contrast-white.png
│ ├── Tile150x150.scale-250_contrast-black.png
│ ├── Tile150x150.scale-250_contrast-white.png
│ ├── Tile150x150.scale-300_contrast-black.png
│ ├── Tile150x150.scale-300_contrast-white.png
│ ├── Tile150x150.scale-400_contrast-black.png
│ ├── Tile150x150.scale-400_contrast-white.png
│ ├── Tile310x150.scale-100_contrast-black.png
│ ├── Tile310x150.scale-100_contrast-white.png
│ ├── Tile310x150.scale-125_contrast-black.png
│ ├── Tile310x150.scale-125_contrast-white.png
│ ├── Tile310x150.scale-150_contrast-black.png
│ ├── Tile310x150.scale-150_contrast-white.png
│ ├── Tile310x150.scale-160_contrast-black.png
│ ├── Tile310x150.scale-160_contrast-white.png
│ ├── Tile310x150.scale-200_contrast-black.png
│ ├── Tile310x150.scale-200_contrast-white.png
│ ├── Tile310x150.scale-225_contrast-black.png
│ ├── Tile310x150.scale-225_contrast-white.png
│ ├── Tile310x150.scale-250_contrast-black.png
│ ├── Tile310x150.scale-250_contrast-white.png
│ ├── Tile310x150.scale-300_contrast-black.png
│ ├── Tile310x150.scale-300_contrast-white.png
│ ├── Tile310x150.scale-400_contrast-black.png
│ ├── Tile310x150.scale-400_contrast-white.png
│ ├── Tile310x310.scale-100_contrast-black.png
│ ├── Tile310x310.scale-100_contrast-white.png
│ ├── Tile310x310.scale-125_contrast-black.png
│ ├── Tile310x310.scale-125_contrast-white.png
│ ├── Tile310x310.scale-150_contrast-black.png
│ ├── Tile310x310.scale-150_contrast-white.png
│ ├── Tile310x310.scale-160_contrast-black.png
│ ├── Tile310x310.scale-160_contrast-white.png
│ ├── Tile310x310.scale-200_contrast-black.png
│ ├── Tile310x310.scale-200_contrast-white.png
│ ├── Tile310x310.scale-225_contrast-black.png
│ ├── Tile310x310.scale-225_contrast-white.png
│ ├── Tile310x310.scale-250_contrast-black.png
│ ├── Tile310x310.scale-250_contrast-white.png
│ ├── Tile310x310.scale-300_contrast-black.png
│ ├── Tile310x310.scale-300_contrast-white.png
│ ├── Tile310x310.scale-400_contrast-black.png
│ ├── Tile310x310.scale-400_contrast-white.png
│ ├── AppList44x44.targetsize-104_contrast-black.png
│ ├── AppList44x44.targetsize-104_contrast-white.png
│ ├── AppList44x44.targetsize-108_contrast-black.png
│ ├── AppList44x44.targetsize-108_contrast-white.png
│ ├── AppList44x44.targetsize-112_contrast-black.png
│ ├── AppList44x44.targetsize-112_contrast-white.png
│ ├── AppList44x44.targetsize-120_contrast-black.png
│ ├── AppList44x44.targetsize-120_contrast-white.png
│ ├── AppList44x44.targetsize-128_contrast-black.png
│ ├── AppList44x44.targetsize-128_contrast-white.png
│ ├── AppList44x44.targetsize-132_contrast-black.png
│ ├── AppList44x44.targetsize-132_contrast-white.png
│ ├── AppList44x44.targetsize-144_contrast-black.png
│ ├── AppList44x44.targetsize-144_contrast-white.png
│ ├── AppList44x44.targetsize-156_contrast-black.png
│ ├── AppList44x44.targetsize-156_contrast-white.png
│ ├── AppList44x44.targetsize-160_contrast-black.png
│ ├── AppList44x44.targetsize-160_contrast-white.png
│ ├── AppList44x44.targetsize-168_contrast-black.png
│ ├── AppList44x44.targetsize-168_contrast-white.png
│ ├── AppList44x44.targetsize-16_contrast-black.png
│ ├── AppList44x44.targetsize-16_contrast-white.png
│ ├── AppList44x44.targetsize-180_contrast-black.png
│ ├── AppList44x44.targetsize-180_contrast-white.png
│ ├── AppList44x44.targetsize-192_contrast-black.png
│ ├── AppList44x44.targetsize-192_contrast-white.png
│ ├── AppList44x44.targetsize-20_contrast-black.png
│ ├── AppList44x44.targetsize-20_contrast-white.png
│ ├── AppList44x44.targetsize-224_contrast-black.png
│ ├── AppList44x44.targetsize-224_contrast-white.png
│ ├── AppList44x44.targetsize-24_contrast-black.png
│ ├── AppList44x44.targetsize-24_contrast-white.png
│ ├── AppList44x44.targetsize-256_contrast-black.png
│ ├── AppList44x44.targetsize-256_contrast-white.png
│ ├── AppList44x44.targetsize-288_contrast-black.png
│ ├── AppList44x44.targetsize-288_contrast-white.png
│ ├── AppList44x44.targetsize-28_contrast-black.png
│ ├── AppList44x44.targetsize-28_contrast-white.png
│ ├── AppList44x44.targetsize-30_contrast-black.png
│ ├── AppList44x44.targetsize-30_contrast-white.png
│ ├── AppList44x44.targetsize-320_contrast-black.png
│ ├── AppList44x44.targetsize-320_contrast-white.png
│ ├── AppList44x44.targetsize-32_contrast-black.png
│ ├── AppList44x44.targetsize-32_contrast-white.png
│ ├── AppList44x44.targetsize-352_contrast-black.png
│ ├── AppList44x44.targetsize-352_contrast-white.png
│ ├── AppList44x44.targetsize-36_contrast-black.png
│ ├── AppList44x44.targetsize-36_contrast-white.png
│ ├── AppList44x44.targetsize-384_contrast-black.png
│ ├── AppList44x44.targetsize-384_contrast-white.png
│ ├── AppList44x44.targetsize-40_contrast-black.png
│ ├── AppList44x44.targetsize-40_contrast-white.png
│ ├── AppList44x44.targetsize-416_contrast-black.png
│ ├── AppList44x44.targetsize-416_contrast-white.png
│ ├── AppList44x44.targetsize-42_contrast-black.png
│ ├── AppList44x44.targetsize-42_contrast-white.png
│ ├── AppList44x44.targetsize-448_contrast-black.png
│ ├── AppList44x44.targetsize-448_contrast-white.png
│ ├── AppList44x44.targetsize-44_contrast-black.png
│ ├── AppList44x44.targetsize-44_contrast-white.png
│ ├── AppList44x44.targetsize-480_contrast-black.png
│ ├── AppList44x44.targetsize-480_contrast-white.png
│ ├── AppList44x44.targetsize-48_contrast-black.png
│ ├── AppList44x44.targetsize-48_contrast-white.png
│ ├── AppList44x44.targetsize-512_contrast-black.png
│ ├── AppList44x44.targetsize-512_contrast-white.png
│ ├── AppList44x44.targetsize-52_contrast-black.png
│ ├── AppList44x44.targetsize-52_contrast-white.png
│ ├── AppList44x44.targetsize-54_contrast-black.png
│ ├── AppList44x44.targetsize-54_contrast-white.png
│ ├── AppList44x44.targetsize-56_contrast-black.png
│ ├── AppList44x44.targetsize-56_contrast-white.png
│ ├── AppList44x44.targetsize-576_contrast-black.png
│ ├── AppList44x44.targetsize-576_contrast-white.png
│ ├── AppList44x44.targetsize-60_contrast-black.png
│ ├── AppList44x44.targetsize-60_contrast-white.png
│ ├── AppList44x44.targetsize-640_contrast-black.png
│ ├── AppList44x44.targetsize-640_contrast-white.png
│ ├── AppList44x44.targetsize-64_contrast-black.png
│ ├── AppList44x44.targetsize-64_contrast-white.png
│ ├── AppList44x44.targetsize-66_contrast-black.png
│ ├── AppList44x44.targetsize-66_contrast-white.png
│ ├── AppList44x44.targetsize-704_contrast-black.png
│ ├── AppList44x44.targetsize-704_contrast-white.png
│ ├── AppList44x44.targetsize-72_contrast-black.png
│ ├── AppList44x44.targetsize-72_contrast-white.png
│ ├── AppList44x44.targetsize-768_contrast-black.png
│ ├── AppList44x44.targetsize-768_contrast-white.png
│ ├── AppList44x44.targetsize-78_contrast-black.png
│ ├── AppList44x44.targetsize-78_contrast-white.png
│ ├── AppList44x44.targetsize-80_contrast-black.png
│ ├── AppList44x44.targetsize-80_contrast-white.png
│ ├── AppList44x44.targetsize-832_contrast-black.png
│ ├── AppList44x44.targetsize-832_contrast-white.png
│ ├── AppList44x44.targetsize-84_contrast-black.png
│ ├── AppList44x44.targetsize-84_contrast-white.png
│ ├── AppList44x44.targetsize-88_contrast-black.png
│ ├── AppList44x44.targetsize-88_contrast-white.png
│ ├── AppList44x44.targetsize-896_contrast-black.png
│ ├── AppList44x44.targetsize-896_contrast-white.png
│ ├── AppList44x44.targetsize-90_contrast-black.png
│ ├── AppList44x44.targetsize-90_contrast-white.png
│ ├── AppList44x44.targetsize-960_contrast-black.png
│ ├── AppList44x44.targetsize-960_contrast-white.png
│ ├── AppList44x44.targetsize-96_contrast-black.png
│ ├── AppList44x44.targetsize-96_contrast-white.png
│ ├── AppList44x44.targetsize-1024_contrast-black.png
│ └── AppList44x44.targetsize-1024_contrast-white.png
│ ├── Mntone.SvgForXaml.DemoApp.WindowsUniversal_TemporaryKey.pfx
│ ├── project.json
│ └── Properties
│ └── Default.rd.xml
├── .gitignore
├── ImageAssets
└── svg2png.ps1
└── LICENSE.txt
/images/ss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/images/ss.png
--------------------------------------------------------------------------------
/images/ss2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/images/ss2.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Interfaces/ICssValue.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Interfaces
2 | {
3 | public interface ICssValue { }
4 | }
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | [*]
2 | charset = utf-8
3 | end_of_line = lf
4 | indent_size = 4
5 | indent_style = tab
6 | insert_final_newline = true
7 | trim_trailing_whitespace = true
8 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Interfaces/IElement.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Interfaces
2 | {
3 | public interface IElement : INode
4 | {
5 | string TagName { get; }
6 | }
7 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Windows/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/Logo.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgFillRuleType.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public enum SvgFillRuleType : byte
4 | {
5 | Unknown = 0,
6 | NonZero,
7 | EvenOdd,
8 | }
9 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/SmallLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/SmallLogo.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/Logo.scale-240.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/SmallLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/SmallLogo.scale-240.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/StoreLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/StoreLogo.scale-240.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/WideLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/WideLogo.scale-240.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/ApplicationInsights.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/SplashScreen.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/SplashScreen.scale-240.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/Square71x71Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/Assets/Square71x71Logo.scale-240.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-100.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-125.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-150.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-200.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-225.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-250.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-250.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-300.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-400.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Interfaces/ISvgLocatable.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Primitives;
2 |
3 | namespace Mntone.SvgForXaml.Interfaces
4 | {
5 | public interface ISvgLocatable
6 | {
7 | SvgRect GetBBox();
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgStrokeLineCapType.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public enum SvgStrokeLineCapType : byte
4 | {
5 | Unknown = 0,
6 | Butt,
7 | Round,
8 | Square,
9 | }
10 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgStrokeLineJoinType.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public enum SvgStrokeLineJoinType : byte
4 | {
5 | Unknown = 0,
6 | Miter,
7 | Round,
8 | Bevel,
9 | }
10 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-104.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-104.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-108.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-108.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-112.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-112.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-120.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-128.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-132.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-132.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-144.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-156.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-156.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-16.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-160.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-168.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-168.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-180.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-192.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-20.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-224.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-224.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-24.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-256.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-28.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-288.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-288.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-30.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-32.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-320.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-320.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-352.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-352.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-36.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-384.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-384.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-40.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-416.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-416.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-42.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-44.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-448.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-448.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-48.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-480.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-480.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-512.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-52.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-52.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-54.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-54.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-56.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-56.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-576.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-576.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-60.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-64.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-640.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-640.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-66.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-66.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-704.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-704.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-72.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-768.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-768.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-78.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-78.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-80.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-832.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-832.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-84.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-84.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-88.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-88.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-896.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-896.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-90.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-96.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-960.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-960.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgStopColorType.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public enum SvgStopColorType : byte
4 | {
5 | Unknown = 0,
6 | CurrentColor,
7 | RgbColor,
8 | RgbColorIccColor,
9 | };
10 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Mntone.SvgForXaml.DemoApp.Windows_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Mntone.SvgForXaml.DemoApp.Windows_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-1024.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/StoreLogo.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile71x71.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/SplashScreen.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile150x150.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x150.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-100_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-100_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-100_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-100_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-125_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-125_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-125_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-125_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-150_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-150_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-150_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-150_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-200_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-200_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-200_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-200_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-225_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-225_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-225_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-225_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-250_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-250_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-250_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-250_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-300_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-300_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-300_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-300_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-400_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-400_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-400_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/Tile310x310.scale-400_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/App.xaml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-104_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-104_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-104_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-104_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-108_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-108_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-108_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-108_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-112_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-112_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-112_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-112_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-120_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-120_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-120_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-120_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-128_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-128_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-128_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-128_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-132_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-132_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-132_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-132_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-144_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-144_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-144_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-144_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-156_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-156_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-156_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-156_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-160_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-160_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-160_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-160_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-168_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-168_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-168_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-168_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-16_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-16_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-16_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-16_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-180_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-180_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-180_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-180_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-192_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-192_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-192_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-192_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-20_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-20_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-20_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-20_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-224_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-224_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-224_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-224_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-24_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-24_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-24_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-24_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-256_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-256_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-256_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-256_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-288_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-288_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-288_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-288_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-28_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-28_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-28_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-28_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-30_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-30_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-30_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-30_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-320_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-320_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-320_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-320_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-32_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-32_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-32_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-32_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-352_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-352_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-352_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-352_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-36_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-36_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-36_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-36_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-384_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-384_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-384_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-384_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-40_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-40_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-40_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-40_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-416_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-416_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-416_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-416_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-42_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-42_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-42_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-42_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-448_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-448_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-448_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-448_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-44_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-44_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-44_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-44_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-480_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-480_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-480_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-480_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-48_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-48_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-48_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-48_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-512_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-512_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-512_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-512_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-52_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-52_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-52_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-52_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-54_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-54_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-54_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-54_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-56_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-56_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-56_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-56_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-576_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-576_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-576_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-576_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-60_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-60_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-60_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-60_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-640_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-640_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-640_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-640_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-64_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-64_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-64_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-64_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-66_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-66_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-66_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-66_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-704_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-704_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-704_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-704_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-72_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-72_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-72_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-72_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-768_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-768_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-768_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-768_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-78_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-78_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-78_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-78_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-80_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-80_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-80_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-80_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-832_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-832_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-832_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-832_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-84_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-84_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-84_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-84_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-88_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-88_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-88_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-88_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-896_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-896_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-896_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-896_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-90_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-90_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-90_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-90_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-960_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-960_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-960_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-960_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-96_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-96_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-96_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-96_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-1024_contrast-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-1024_contrast-black.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-1024_contrast-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Assets/AppList44x44.targetsize-1024_contrast-white.png
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Interfaces/ISvgTransformable.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Primitives;
2 |
3 | namespace Mntone.SvgForXaml.Interfaces
4 | {
5 | public interface ISvgTransformable : ISvgLocatable
6 | {
7 | SvgTransformCollection Transform { get; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Mntone.SvgForXaml.DemoApp.WindowsUniversal_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mntone/SvgForXaml/HEAD/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Mntone.SvgForXaml.DemoApp.WindowsUniversal_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Interfaces/ISvgStylable.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Interfaces
2 | {
3 | public interface ISvgStylable
4 | {
5 | string ClassName { get; }
6 | CssStyleDeclaration Style { get; }
7 |
8 | ICssValue GetPresentationAttribute(string name);
9 | }
10 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgPaintType.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public enum SvgPaintType : ushort
4 | {
5 | Unknown = 0,
6 | RgbColor,
7 | RgbColorIccColor,
8 | None = 101,
9 | CurrentColor,
10 | UriNone,
11 | UriCurrentColor,
12 | UriRgbColor,
13 | UriRgbColorIccColor,
14 | Uri,
15 | };
16 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Themes/Generic.xaml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
7 |
8 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.suo
2 | [Dd]ebug/
3 | [Dd]ebugPublic/
4 | [Rr]elease/
5 | [Rr]eleases/
6 | x64/
7 | x86/
8 | build/
9 | [Bb]in/
10 | [Oo]bj/
11 | .vs/
12 | packages/
13 | AppPackages/
14 | BundleArtifacts/
15 | DTAR_*/
16 | *.nupkg
17 | *.appx
18 | *.lock.json
19 | *.csproj.user
20 |
21 | Package.StoreAssociation.xml
22 | *_StoreKey.pfx
23 | _pkginfo.txt
24 |
25 | ipch/
26 | *.sdf
27 | *.opensdf
28 | *.vcxproj.filters
29 | *.vcxproj.user
30 | *.opendb
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Interfaces/INode.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace Mntone.SvgForXaml.Interfaces
4 | {
5 | public interface INode
6 | {
7 | SvgDocument OwnerDocument { get; }
8 | INode ParentNode { get; }
9 | IReadOnlyCollection ChildNodes { get; }
10 | SvgElement FirstChild { get; }
11 | SvgElement LastChild { get; }
12 |
13 | INode CloneNode(bool deep = false);
14 | }
15 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentClosePath.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | [System.Diagnostics.DebuggerDisplay("Z")]
4 | public sealed class SvgPathSegmentClosePath : SvgPathSegment
5 | {
6 | public SvgPathSegmentClosePath() { }
7 |
8 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.ClosePath;
9 | public override sealed char PathSegmentTypeAsLetter => 'z';
10 | }
11 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.WindowsUniversal/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.9",
4 | "Win2D.uwp": "1.9.0"
5 | },
6 | "frameworks": {
7 | "uap10.0": {}
8 | },
9 | "runtimes": {
10 | "win10-arm": {},
11 | "win10-arm-aot": {},
12 | "win10-x86": {},
13 | "win10-x86-aot": {},
14 | "win10-x64": {},
15 | "win10-x64-aot": {}
16 | }
17 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/RgbColor.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | [System.Diagnostics.DebuggerDisplay("RgbColor: Red = {this.Red}, Green = {this.Green}, Blue = {this.Blue}")]
4 | public struct RgbColor
5 | {
6 | internal RgbColor(byte red, byte green, byte blue)
7 | {
8 | this.Red = red;
9 | this.Green = green;
10 | this.Blue = blue;
11 | }
12 |
13 | public byte Red { get; }
14 | public byte Green { get; }
15 | public byte Blue { get; }
16 | }
17 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgFillRule.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 |
3 | namespace Mntone.SvgForXaml.Primitives
4 | {
5 | public struct SvgFillRule : ICssValue
6 | {
7 | public SvgFillRule(string fillRule)
8 | {
9 | if (fillRule == "nonzero") this.Value = SvgFillRuleType.NonZero;
10 | else if (fillRule == "evenodd") this.Value = SvgFillRuleType.EvenOdd;
11 | else this.Value = SvgFillRuleType.Unknown;
12 | }
13 |
14 | public SvgFillRuleType Value { get; }
15 | }
16 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgIri.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using System;
3 |
4 | namespace Mntone.SvgForXaml.Primitives
5 | {
6 | public sealed class SvgIri : ICssValue
7 | {
8 | public SvgIri(string iri)
9 | {
10 | if (iri.StartsWith("url(") && iri[iri.Length - 1] == ')')
11 | {
12 | this.Uri = iri.Substring(4, iri.Length - 5);
13 | return;
14 | }
15 | throw new ArgumentException(nameof(iri));
16 | }
17 |
18 | public string Uri { get; }
19 | }
20 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/Assets/test1.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ImageAssets/svg2png.ps1:
--------------------------------------------------------------------------------
1 | param($settingsFile = "settings.json")
2 | $inkscape = "C:\Program Files\Inkscape\inkscape.com"
3 | $settings = (Get-Content $settingsFile -Encoding UTF8 | ConvertFrom-Json)
4 | foreach ($item in $settings.targets)
5 | {
6 | foreach ($file in $item.files)
7 | {
8 | for ($i = 0; $i -lt $item.size.length; ++$i)
9 | {
10 | $option = "-z"
11 | $width = "-w" + $item.size[$i][1]
12 | $export = "--export-png=" + $settings.base_dir + ($file.dst -F $item.size[$i][0], $item.size[$i][1])
13 | & $inkscape $file.src $option $width $export
14 | }
15 | }
16 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 |
3 | [assembly: AssemblyTitle("Svg for Xaml Demo app")]
4 | [assembly: AssemblyDescription("")]
5 | [assembly: AssemblyConfiguration("")]
6 | [assembly: AssemblyCompany("mntone")]
7 | [assembly: AssemblyProduct("Svg for Xaml Demo app")]
8 | [assembly: AssemblyCopyright("Copyright © 2015-2020 mntone")]
9 | [assembly: AssemblyTrademark("")]
10 | [assembly: AssemblyCulture("")]
11 |
12 | [assembly: AssemblyVersion("0.9.4.0")]
13 | [assembly: AssemblyFileVersion("0.9.4.0")]
14 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgStopColor.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public sealed class SvgStopColor : SvgColor
4 | {
5 | public SvgStopColor(string paint)
6 | {
7 | if (string.Compare(paint, "currentColor", System.StringComparison.OrdinalIgnoreCase) == 0)
8 | {
9 | this.StopColorType = SvgStopColorType.CurrentColor;
10 | }
11 | else
12 | {
13 | this.StopColorType = SvgStopColorType.RgbColor;
14 | this.RgbColor = Parse(paint);
15 | }
16 | }
17 |
18 | public SvgStopColorType StopColorType { get; }
19 | }
20 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "Microsoft.ApplicationInsights": "1.2.3",
4 | "Microsoft.ApplicationInsights.PersistenceChannel": "1.2.3",
5 | "Microsoft.ApplicationInsights.WindowsApps": "1.1.0",
6 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.9",
7 | "Win2D.uwp": "1.9.0"
8 | },
9 | "frameworks": {
10 | "uap10.0": {}
11 | },
12 | "runtimes": {
13 | "win10-arm": {},
14 | "win10-arm-aot": {},
15 | "win10-x86": {},
16 | "win10-x86-aot": {},
17 | "win10-x64": {},
18 | "win10-x64-aot": {}
19 | }
20 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/Assets/test2.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Internal/SvgTransformableHelper.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Primitives;
2 | using Windows.Data.Xml.Dom;
3 |
4 | namespace Mntone.SvgForXaml.Internal
5 | {
6 | internal sealed class SvgTransformableHelper
7 | {
8 | internal SvgTransformableHelper(SvgTransformCollection transform)
9 | {
10 | this.Transform = transform;
11 | }
12 | public SvgTransformableHelper(XmlElement element)
13 | {
14 | this.Transform = SvgTransformParser.Parse(element.GetAttribute("transform"));
15 | }
16 |
17 | internal SvgTransformableHelper DeepCopy()
18 | {
19 | return new SvgTransformableHelper(this.Transform.DeepCopy());
20 | }
21 |
22 | public SvgTransformCollection Transform { get; }
23 | }
24 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/UI/Xaml/SvgImage.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
22 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentCollection.cs:
--------------------------------------------------------------------------------
1 | using System.Collections;
2 | using System.Collections.Generic;
3 | using System.Collections.ObjectModel;
4 |
5 | namespace Mntone.SvgForXaml.Path
6 | {
7 | public sealed class SvgPathSegmentCollection : IReadOnlyCollection
8 | {
9 | private readonly Collection _segments;
10 |
11 | internal SvgPathSegmentCollection(Collection segments)
12 | {
13 | this._segments = segments;
14 | }
15 |
16 | public int Count => this._segments.Count;
17 | public IEnumerator GetEnumerator() => this._segments.GetEnumerator();
18 | IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)this._segments).GetEnumerator();
19 | }
20 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Internal;
2 | using System.Reflection;
3 |
4 | [assembly: AssemblyTitle(AssemblyInfo.QualifiedName)]
5 | [assembly: AssemblyDescription("")]
6 | [assembly: AssemblyConfiguration("")]
7 | [assembly: AssemblyCompany("mntone")]
8 | [assembly: AssemblyProduct(AssemblyInfo.QualifiedName)]
9 | [assembly: AssemblyCopyright("Copyright © 2015-2020 mntone")]
10 | [assembly: AssemblyTrademark("")]
11 | [assembly: AssemblyCulture("")]
12 |
13 | [assembly: AssemblyVersion("0.9.4.0")]
14 | [assembly: AssemblyFileVersion("0.9.4.0")]
15 |
16 | namespace Mntone.SvgForXaml.Internal
17 | {
18 | internal static class AssemblyInfo
19 | {
20 | public const string QualifiedName = "Svg for Xaml Library";
21 | }
22 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgPoint.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Linq;
3 |
4 | namespace Mntone.SvgForXaml.Primitives
5 | {
6 | [System.Diagnostics.DebuggerDisplay("({this.X}, {this.Y})")]
7 | public struct SvgPoint : IEquatable
8 | {
9 | internal SvgPoint(float x, float y)
10 | {
11 | this.X = x;
12 | this.Y = y;
13 | }
14 |
15 | public float X { get; }
16 | public float Y { get; }
17 |
18 | internal static SvgPoint Parse(string attributeValue)
19 | {
20 | var s = attributeValue.Split(new[] { ',' }).Select(t => float.Parse(t, System.Globalization.CultureInfo.InvariantCulture)).ToArray();
21 | return new SvgPoint(s[0], s[1]);
22 | }
23 |
24 | public bool Equals(SvgPoint other) => this.X == other.X && this.Y == other.Y;
25 | }
26 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgStrokeLineCap.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 |
3 | namespace Mntone.SvgForXaml.Primitives
4 | {
5 | [System.Diagnostics.DebuggerDisplay("StrokeLineCap: {this.Value}")]
6 | public struct SvgStrokeLineCap : ICssValue
7 | {
8 | public SvgStrokeLineCap(string strokeLineCap)
9 | {
10 | switch (strokeLineCap.ToLower())
11 | {
12 | case "butt":
13 | this.Value = SvgStrokeLineCapType.Butt;
14 | break;
15 | case "round":
16 | this.Value = SvgStrokeLineCapType.Round;
17 | break;
18 | case "square":
19 | this.Value = SvgStrokeLineCapType.Square;
20 | break;
21 | default:
22 | this.Value = SvgStrokeLineCapType.Unknown;
23 | break;
24 | }
25 | }
26 |
27 | public SvgStrokeLineCapType Value { get; }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgStrokeLineJoin.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 |
3 | namespace Mntone.SvgForXaml.Primitives
4 | {
5 | [System.Diagnostics.DebuggerDisplay("StrokeLineJoin: {this.Value}")]
6 | public struct SvgStrokeLineJoin : ICssValue
7 | {
8 | public SvgStrokeLineJoin(string strokeLineJoin)
9 | {
10 | switch (strokeLineJoin.ToLower())
11 | {
12 | case "butt":
13 | this.Value = SvgStrokeLineJoinType.Miter;
14 | break;
15 | case "round":
16 | this.Value = SvgStrokeLineJoinType.Round;
17 | break;
18 | case "bevel":
19 | this.Value = SvgStrokeLineJoinType.Bevel;
20 | break;
21 | default:
22 | this.Value = SvgStrokeLineJoinType.Unknown;
23 | break;
24 | }
25 | }
26 |
27 | public SvgStrokeLineJoinType Value { get; }
28 | }
29 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgPaint.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Primitives
2 | {
3 | public sealed class SvgPaint : SvgColor
4 | {
5 | public SvgPaint(string paint)
6 | {
7 | if (paint.StartsWith("url("))
8 | {
9 | this.PaintType = SvgPaintType.Uri;
10 | this.Uri = paint.Substring(4, paint.Length - 5);
11 | }
12 | else if (paint == "none")
13 | {
14 | this.PaintType = SvgPaintType.None;
15 | }
16 | else if (string.Compare(paint, "currentColor", System.StringComparison.OrdinalIgnoreCase) == 0)
17 | {
18 | this.PaintType = SvgPaintType.CurrentColor;
19 | }
20 | else
21 | {
22 | this.PaintType = SvgPaintType.RgbColor;
23 | this.RgbColor = Parse(paint);
24 | }
25 | }
26 |
27 | public SvgPaintType PaintType { get; }
28 | public string Uri { get; }
29 | }
30 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/Assets/test4.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Internal/LinqExtensions.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | namespace Mntone.SvgForXaml.Internal
6 | {
7 | internal static class LinqExtensions
8 | {
9 | public static int FindIndex(this IEnumerable source, Func predicate)
10 | {
11 | return source.Select((s, index) => new { Element = s, Index = index })
12 | .First(e => predicate(e.Element)).Index;
13 | }
14 |
15 | public static TSource PreviousOrDefault(this IEnumerable source, Func predicate)
16 | {
17 | return source.ElementAtOrDefault(source.FindIndex(predicate) - 1);
18 | }
19 |
20 | public static TSource NextOrDefault(this IEnumerable source, Func predicate)
21 | {
22 | return source.ElementAtOrDefault(source.FindIndex(predicate) + 1);
23 | }
24 | }
25 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/Assets/test3.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgPointCollection.cs:
--------------------------------------------------------------------------------
1 | using System.Collections;
2 | using System.Collections.Generic;
3 | using System.Collections.ObjectModel;
4 | using System.Linq;
5 |
6 | namespace Mntone.SvgForXaml.Primitives
7 | {
8 | public sealed class SvgPointCollection : IReadOnlyCollection
9 | {
10 | private readonly Collection _points;
11 |
12 | internal SvgPointCollection(string attributeValue)
13 | {
14 | var points = attributeValue.Split(new[] { ' ', '\n', '\r', '\t' }).Where(s => !string.IsNullOrWhiteSpace(s)).Select(p => SvgPoint.Parse(p));
15 |
16 | this._points = new Collection();
17 | foreach (var point in points) this._points.Add(point);
18 | }
19 |
20 | public int Count => this._points.Count;
21 | public IEnumerator GetEnumerator() => this._points.GetEnumerator();
22 | IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)this._points).GetEnumerator();
23 | }
24 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegment.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegment
4 | {
5 | public enum SvgPathSegmentType : ushort
6 | {
7 | Unknown = 0,
8 | ClosePath,
9 | MoveToAbsolute,
10 | MoveToRelative,
11 | LineToAbsolute,
12 | LineToRelative,
13 | CurveToCubicAbsolute,
14 | CurveToCubicRelative,
15 | CurveToQuadraticAbsolute,
16 | CurveToQuadraticRelative,
17 | ArcAbsolute,
18 | ArcRelative,
19 | LineToHorizontalAbsolute,
20 | LineToHorizontalRelative,
21 | LineToVerticalAbsolute,
22 | LineToVerticalRelative,
23 | CurveToCubicSmoothAbsolute,
24 | CurveToCubicSmoothRelative,
25 | CurveToQuadraticSmoothAbsolute,
26 | CurveToQuadraticSmoothRelative,
27 | }
28 |
29 | protected internal SvgPathSegment() { }
30 |
31 | public abstract SvgPathSegmentType PathSegmentType { get; }
32 | public abstract char PathSegmentTypeAsLetter { get; }
33 | }
34 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgUnitType.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Mntone.SvgForXaml.Primitives
4 | {
5 | public enum SvgUnitType : ushort
6 | {
7 | Unknown = 0,
8 | UserSpaceOnUse,
9 | ObjectBoundingBox,
10 | }
11 |
12 | public static class SvgUnitTypeHelper
13 | {
14 | public static SvgUnitType Parse(this string unitTypeText, SvgUnitType defaultValue = SvgUnitType.Unknown)
15 | {
16 | switch (unitTypeText)
17 | {
18 | case "userSpaceOnUse": return SvgUnitType.UserSpaceOnUse;
19 | case "objectBoundingBox": return SvgUnitType.ObjectBoundingBox;
20 | }
21 | return defaultValue;
22 | }
23 |
24 | public static string AsString(this SvgUnitType unitType)
25 | {
26 | switch (unitType)
27 | {
28 | case SvgUnitType.UserSpaceOnUse: return "userSpaceOnUse";
29 | case SvgUnitType.ObjectBoundingBox: return "objectBoundingBox";
30 | }
31 | throw new ArgumentException(nameof(unitType));
32 | }
33 | }
34 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Internal/SvgLocatableHelper.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Primitives;
3 |
4 | namespace Mntone.SvgForXaml.Internal
5 | {
6 | internal static class SvgLocatableHelper
7 | {
8 | public static SvgRect GetUnionBBox(SvgElement element)
9 | {
10 | float left = float.MaxValue, top = float.MinValue, right = float.MaxValue, bottom = float.MinValue;
11 | foreach (var child in element.ChildNodes)
12 | {
13 | var locatable = child as ISvgLocatable;
14 | if (locatable == null) continue;
15 |
16 | var bbox = locatable.GetBBox();
17 | if (bbox.X < left) left = bbox.X;
18 |
19 | var bboxRight = bbox.X + bbox.Width;
20 | if (bboxRight > right) right = bboxRight;
21 |
22 | if (bbox.Y < top) top = bbox.Y;
23 |
24 | var bboxBottom = bbox.Y + bbox.Height;
25 | if (bboxBottom > bottom) bottom = bboxBottom;
26 | }
27 | return new SvgRect(left, top, right - left, bottom - top);
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/nuget-build/wpa81/Mntone.SvgForXaml.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | x86
10 | $(Platform)
11 |
12 |
13 |
14 |
15 | $(MSBuildThisFileDirectory)..\..\lib\wpa81\$(Mntone-Platform)\Mntone.SvgForXaml.dll
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/nuget-build/uap10.0/Mntone.SvgForXaml.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | x86
10 | $(Platform)
11 |
12 |
13 |
14 |
15 | $(MSBuildThisFileDirectory)..\..\lib\uap10.0\$(Mntone-Platform)\Mntone.SvgForXaml.dll
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Gradients/SvgSpreadMethodType.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Mntone.SvgForXaml.Gradients
4 | {
5 | public enum SvgSpreadMethodType : ushort
6 | {
7 | Unknown = 0,
8 | Pad,
9 | Reflect,
10 | Repeat,
11 | }
12 |
13 | public static class SvgSpreadMethodTypeHelper
14 | {
15 | public static SvgSpreadMethodType Parse(this string spreadMethodTypeText)
16 | {
17 | switch (spreadMethodTypeText)
18 | {
19 | case "pad": return SvgSpreadMethodType.Pad;
20 | case "reflect": return SvgSpreadMethodType.Repeat;
21 | case "repeat": return SvgSpreadMethodType.Repeat;
22 | }
23 | return SvgSpreadMethodType.Unknown;
24 | }
25 |
26 | public static string AsString(this SvgSpreadMethodType spreadMethodType)
27 | {
28 | switch (spreadMethodType)
29 | {
30 | case SvgSpreadMethodType.Pad: return "pad";
31 | case SvgSpreadMethodType.Reflect: return "reflect";
32 | case SvgSpreadMethodType.Repeat: return "repeat";
33 | }
34 | throw new ArgumentException(nameof(spreadMethodType));
35 | }
36 | }
37 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/Mntone.SvgForXaml.DemoApp.Shared.shproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 937293fa-d92c-409c-a9f2-fddb53c31184
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015-2020 mntone
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/SvgTitleElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Windows.Data.Xml.Dom;
4 |
5 | namespace Mntone.SvgForXaml
6 | {
7 | public sealed class SvgTitleElement : SvgElement, ISvgStylable
8 | {
9 | internal SvgTitleElement(INode parent, XmlElement element)
10 | : base(parent, element)
11 | {
12 | this._stylableHelper = new SvgStylableHelper(this, element);
13 | }
14 |
15 | protected override void DeepCopy(SvgElement element)
16 | {
17 | var casted = (SvgTitleElement)element;
18 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
19 | }
20 |
21 | public override string TagName => "title";
22 |
23 | #region ISvgStylable
24 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
25 | private SvgStylableHelper _stylableHelper;
26 | public string ClassName => this._stylableHelper.ClassName;
27 | public CssStyleDeclaration Style => this._stylableHelper.Style;
28 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
29 | #endregion
30 | }
31 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/SvgSymbolElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Windows.Data.Xml.Dom;
4 |
5 | namespace Mntone.SvgForXaml
6 | {
7 | public sealed class SvgSymbolElement : SvgElement, ISvgStylable
8 | {
9 | internal SvgSymbolElement(INode parent, XmlElement element)
10 | : base(parent, element)
11 | {
12 | this._stylableHelper = new SvgStylableHelper(this, element);
13 | }
14 |
15 | protected override void DeepCopy(SvgElement element)
16 | {
17 | var casted = (SvgSymbolElement)element;
18 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
19 | }
20 |
21 | public override string TagName => "symbol";
22 |
23 | #region ISvgStylable
24 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
25 | private SvgStylableHelper _stylableHelper;
26 | public string ClassName => this._stylableHelper.ClassName;
27 | public CssStyleDeclaration Style => this._stylableHelper.Style;
28 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
29 | #endregion
30 | }
31 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/nuget-build/win81/Mntone.SvgForXaml.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | x86
10 | $(Platform)
11 |
12 |
13 |
14 |
15 | $(MSBuildThisFileDirectory)..\..\lib\win81\$(Mntone-Platform)\Mntone.SvgForXaml.dll
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Mntone.SvgForXaml.Shared.shproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 3f262c3f-e1de-471f-8ea7-3786be33564e
5 | 14.0
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/SvgDescriptionElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Windows.Data.Xml.Dom;
4 |
5 | namespace Mntone.SvgForXaml
6 | {
7 | public sealed class SvgDescriptionElement : SvgElement, ISvgStylable
8 | {
9 | internal SvgDescriptionElement(INode parent, XmlElement element)
10 | : base(parent, element)
11 | {
12 | this._stylableHelper = new SvgStylableHelper(this, element);
13 | }
14 |
15 | protected override void DeepCopy(SvgElement element)
16 | {
17 | var casted = (SvgDescriptionElement)element;
18 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
19 | }
20 |
21 | public override string TagName => "desc";
22 |
23 | #region ISvgStylable
24 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
25 | private SvgStylableHelper _stylableHelper;
26 | public string ClassName => this._stylableHelper.ClassName;
27 | public CssStyleDeclaration Style => this._stylableHelper.Style;
28 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
29 | #endregion
30 | }
31 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgTransformCollection.cs:
--------------------------------------------------------------------------------
1 | using System.Collections;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | namespace Mntone.SvgForXaml.Primitives
6 | {
7 | public sealed class SvgTransformCollection : IReadOnlyCollection
8 | {
9 | private readonly ICollection _transforms;
10 |
11 | internal SvgTransformCollection(ICollection transforms)
12 | {
13 | this._transforms = transforms;
14 | }
15 |
16 | internal void Add(SvgTransform transfrom) => this._transforms.Add(transfrom);
17 |
18 | internal SvgTransformCollection DeepCopy()
19 | {
20 | return new SvgTransformCollection(this._transforms.Select(t => new SvgTransform(t)).ToList());
21 | }
22 |
23 | internal SvgMatrix Result
24 | {
25 | get
26 | {
27 | if (this._transforms.Count == 0) return SvgMatrix.Indentity;
28 |
29 | var m = this._transforms.First().Matrix;
30 | foreach (var m2 in this._transforms.Skip(1)) m = m * m2.Matrix;
31 | return m;
32 | }
33 | }
34 |
35 | public int Count => this._transforms.Count;
36 | public IEnumerator GetEnumerator() => this._transforms.GetEnumerator();
37 | IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)this._transforms).GetEnumerator();
38 | }
39 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/SvgSvgElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Mntone.SvgForXaml.Primitives;
4 | using Windows.Data.Xml.Dom;
5 |
6 | namespace Mntone.SvgForXaml
7 | {
8 | public sealed class SvgSvgElement : SvgElement, ISvgStylable
9 | {
10 | internal SvgSvgElement(INode parent, XmlElement element)
11 | : base(parent, element)
12 | {
13 | this._stylableHelper = new SvgStylableHelper(this, element);
14 |
15 | this.ViewPort = SvgRect.Parse(element.GetAttribute("viewBox"));
16 | }
17 |
18 | protected override void DeepCopy(SvgElement element)
19 | {
20 | var casted = (SvgSvgElement)element;
21 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
22 | }
23 |
24 | public override string TagName => "svg";
25 | public SvgRect? ViewPort { get; }
26 |
27 | #region ISvgStylable
28 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
29 | private SvgStylableHelper _stylableHelper;
30 | public string ClassName => this._stylableHelper.ClassName;
31 | public CssStyleDeclaration Style => this._stylableHelper.Style;
32 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
33 | #endregion
34 | }
35 |
36 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/TransformSession.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.Graphics.Canvas;
2 | using Mntone.SvgForXaml.Primitives;
3 | using System;
4 | using System.Numerics;
5 |
6 | namespace Mntone.SvgForXaml
7 | {
8 | internal sealed class TransformSession : IDisposable
9 | {
10 | private bool _disposed = false;
11 |
12 | public CanvasDrawingSession Session { get; }
13 | public Matrix3x2 OldTransform { get; }
14 |
15 | private TransformSession(CanvasDrawingSession session, Matrix3x2 oldTransform, SvgMatrix multiply)
16 | {
17 | this.Session = session;
18 | this.OldTransform = oldTransform;
19 |
20 | var transform = new Matrix3x2((float)multiply.A, (float)multiply.B, (float)multiply.C, (float)multiply.D, (float)multiply.E, (float)multiply.F);
21 | session.Transform = transform * session.Transform;
22 | }
23 |
24 | public void Dispose() => this.Dispose(true);
25 | private void Dispose(bool disposing)
26 | {
27 | if (this._disposed) return;
28 | if (disposing)
29 | {
30 | this.Session.Transform = this.OldTransform;
31 | }
32 | this._disposed = true;
33 | }
34 |
35 | public static TransformSession CreateTransformSession(CanvasDrawingSession session, SvgMatrix multiply)
36 | {
37 | return new TransformSession(session, session.Transform, multiply);
38 | }
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Shared/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
14 |
15 |
16 |
17 |
19 |
21 |
22 |
23 |
27 |
28 |
33 |
40 |
47 |
48 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Gradients/SvgStopElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Windows.Data.Xml.Dom;
4 |
5 | namespace Mntone.SvgForXaml.Gradients
6 | {
7 | [System.Diagnostics.DebuggerDisplay("Stop: Offset = {this.Offset}")]
8 | public sealed class SvgStopElement : SvgElement, ISvgStylable
9 | {
10 | internal SvgStopElement(INode parent, XmlElement element)
11 | : base(parent, element)
12 | {
13 | this._stylableHelper = new SvgStylableHelper(this, element);
14 |
15 | this.Offset = element.ParseNumberOrPercentage("offset");
16 | }
17 |
18 | protected override void DeepCopy(SvgElement element)
19 | {
20 | var casted = (SvgStopElement)element;
21 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
22 | }
23 |
24 | public override string TagName => "stop";
25 | public float Offset { get; }
26 |
27 | #region ISvgStylable
28 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
29 | private SvgStylableHelper _stylableHelper;
30 | public string ClassName => this._stylableHelper.ClassName;
31 | public CssStyleDeclaration Style => this._stylableHelper.Style;
32 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
33 | #endregion
34 | }
35 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgRect.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Linq;
3 |
4 | namespace Mntone.SvgForXaml.Primitives
5 | {
6 | [System.Diagnostics.DebuggerDisplay("Point = ({this.X}, {this.Y}), Size = {this.Width}x{this.Height}")]
7 | public struct SvgRect : IEquatable
8 | {
9 | internal SvgRect(float x, float y, float width, float height)
10 | {
11 | this.X = x;
12 | this.Y = y;
13 | this.Width = width;
14 | this.Height = height;
15 | }
16 |
17 | internal SvgRect(SvgNumber x, SvgNumber y, SvgNumber width, SvgNumber height)
18 | {
19 | this.X = x.Value;
20 | this.Y = y.Value;
21 | this.Width = width.Value;
22 | this.Height = height.Value;
23 | }
24 |
25 | public float X { get; }
26 | public float Y { get; }
27 | public float Width { get; }
28 | public float Height { get; }
29 |
30 | internal static SvgRect? Parse(string attributeValue)
31 | {
32 | if (string.IsNullOrWhiteSpace(attributeValue)) return null;
33 |
34 | var s = attributeValue.Split(new[] { ' ' }).Select(t => float.Parse(t, System.Globalization.CultureInfo.InvariantCulture)).ToArray();
35 | return new SvgRect(s[0], s[1], s[2], s[3]);
36 | }
37 |
38 | public bool Equals(SvgRect other) => this.X == other.X && this.Y == other.Y && this.Width == other.Width && this.Height == other.Height;
39 | }
40 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentLineTo.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegmentLineToBase : SvgPathSegment
4 | {
5 | protected internal SvgPathSegmentLineToBase(float x, float y) { this.X = x; this.Y = y; }
6 |
7 | public float X { get; }
8 | public float Y { get; }
9 |
10 | public static SvgPathSegmentLineToBase Create(float x, float y, bool isAbsolute) => isAbsolute
11 | ? (SvgPathSegmentLineToBase)new SvgPathSegmentLineToAbsolute(x, y)
12 | : new SvgPathSegmentLineToRelative(x, y);
13 | }
14 |
15 | [System.Diagnostics.DebuggerDisplay("L{this.X},{this.Y}")]
16 | public sealed class SvgPathSegmentLineToAbsolute : SvgPathSegmentLineToBase
17 | {
18 | public SvgPathSegmentLineToAbsolute(float x, float y) : base(x, y) { }
19 |
20 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.LineToAbsolute;
21 | public override sealed char PathSegmentTypeAsLetter => 'L';
22 | }
23 |
24 | [System.Diagnostics.DebuggerDisplay("l{this.X},{this.Y}")]
25 | public sealed class SvgPathSegmentLineToRelative : SvgPathSegmentLineToBase
26 | {
27 | public SvgPathSegmentLineToRelative(float x, float y) : base(x, y) { }
28 |
29 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.LineToRelative;
30 | public override sealed char PathSegmentTypeAsLetter => 'l';
31 | }
32 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentMoveTo.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegmentMoveToBase : SvgPathSegment
4 | {
5 | protected internal SvgPathSegmentMoveToBase(float x, float y) { this.X = x; this.Y = y; }
6 |
7 | public float X { get; }
8 | public float Y { get; }
9 |
10 | public static SvgPathSegmentMoveToBase Create(float x, float y, bool isAbsolute) => isAbsolute
11 | ? (SvgPathSegmentMoveToBase)new SvgPathSegmentMoveToAbsolute(x, y)
12 | : new SvgPathSegmentMoveToRelative(x, y);
13 | }
14 |
15 | [System.Diagnostics.DebuggerDisplay("M{this.X},{this.Y}")]
16 | public sealed class SvgPathSegmentMoveToAbsolute : SvgPathSegmentMoveToBase
17 | {
18 | public SvgPathSegmentMoveToAbsolute(float x, float y) : base(x, y) { }
19 |
20 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.MoveToAbsolute;
21 | public override sealed char PathSegmentTypeAsLetter => 'M';
22 | }
23 |
24 | [System.Diagnostics.DebuggerDisplay("m{this.X},{this.Y}")]
25 | public sealed class SvgPathSegmentMoveToRelative : SvgPathSegmentMoveToBase
26 | {
27 | public SvgPathSegmentMoveToRelative(float x, float y) : base(x, y) { }
28 |
29 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.MoveToRelative;
30 | public override sealed char PathSegmentTypeAsLetter => 'm';
31 | }
32 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentLineToVertical.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegmentLineToVerticalBase : SvgPathSegment
4 | {
5 | protected internal SvgPathSegmentLineToVerticalBase(float y) { this.Y = y; }
6 |
7 | public float Y { get; }
8 |
9 | public static SvgPathSegmentLineToVerticalBase Create(float y, bool isAbsolute) => isAbsolute
10 | ? (SvgPathSegmentLineToVerticalBase)new SvgPathSegmentLineToVerticalAbsolute(y)
11 | : new SvgPathSegmentLineToVerticalRelative(y);
12 | }
13 |
14 | [System.Diagnostics.DebuggerDisplay("V{this.Y}")]
15 | public sealed class SvgPathSegmentLineToVerticalAbsolute : SvgPathSegmentLineToVerticalBase
16 | {
17 | public SvgPathSegmentLineToVerticalAbsolute(float y) : base(y) { }
18 |
19 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.LineToVerticalAbsolute;
20 | public override sealed char PathSegmentTypeAsLetter => 'V';
21 | }
22 |
23 | [System.Diagnostics.DebuggerDisplay("v{this.Y}")]
24 | public sealed class SvgPathSegmentLineToVerticalRelative : SvgPathSegmentLineToVerticalBase
25 | {
26 | public SvgPathSegmentLineToVerticalRelative(float y) : base(y) { }
27 |
28 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.LineToVerticalRelative;
29 | public override sealed char PathSegmentTypeAsLetter => 'v';
30 | }
31 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentLineToHorizontal.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegmentLineToHorizontalBase : SvgPathSegment
4 | {
5 | protected internal SvgPathSegmentLineToHorizontalBase(float x) { this.X = x; }
6 |
7 | public float X { get; }
8 |
9 | public static SvgPathSegmentLineToHorizontalBase Create(float x, bool isAbsolute) => isAbsolute
10 | ? (SvgPathSegmentLineToHorizontalBase)new SvgPathSegmentLineToHorizontalAbsolute(x)
11 | : new SvgPathSegmentLineToHorizontalRelative(x);
12 | }
13 |
14 | [System.Diagnostics.DebuggerDisplay("H{this.X}")]
15 | public sealed class SvgPathSegmentLineToHorizontalAbsolute : SvgPathSegmentLineToHorizontalBase
16 | {
17 | public SvgPathSegmentLineToHorizontalAbsolute(float x) : base(x) { }
18 |
19 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.LineToHorizontalAbsolute;
20 | public override sealed char PathSegmentTypeAsLetter => 'H';
21 | }
22 |
23 | [System.Diagnostics.DebuggerDisplay("h{this.X}")]
24 | public sealed class SvgPathSegmentLineToHorizontalRelative : SvgPathSegmentLineToHorizontalBase
25 | {
26 | public SvgPathSegmentLineToHorizontalRelative(float x) : base(x) { }
27 |
28 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.LineToHorizontalRelative;
29 | public override sealed char PathSegmentTypeAsLetter => 'h';
30 | }
31 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Primitives/SvgMatrix.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Mntone.SvgForXaml.Primitives
4 | {
5 | [System.Diagnostics.DebuggerDisplay("[{this.A} {this.B} {this.C} {this.D} {this.E} {this.F}]")]
6 | public struct SvgMatrix : IEquatable
7 | {
8 | public static SvgMatrix Indentity { get; } = new SvgMatrix(1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
9 |
10 | internal SvgMatrix(double a, double b, double c, double d, double e, double f)
11 | {
12 | this.A = a;
13 | this.B = b;
14 | this.C = c;
15 | this.D = d;
16 | this.E = e;
17 | this.F = f;
18 | }
19 |
20 | public double A { get; }
21 | public double B { get; }
22 | public double C { get; }
23 | public double D { get; }
24 | public double E { get; }
25 | public double F { get; }
26 |
27 | public bool Equals(SvgMatrix other)
28 | {
29 | return this.A == other.A && this.B == other.B && this.C == other.C
30 | && this.D == other.D && this.E == other.E && this.F == other.F;
31 | }
32 |
33 | public static SvgMatrix operator *(SvgMatrix left, SvgMatrix right)
34 | {
35 | return new SvgMatrix(
36 | left.A * right.A + left.C * right.B,
37 | left.B * right.A + left.D * right.B,
38 | left.A * right.C + left.C * right.D,
39 | left.B * right.C + left.D * right.D,
40 | left.A * right.E + left.C * right.F + left.E,
41 | left.B * right.E + left.D * right.F + left.F);
42 | }
43 | }
44 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.WindowsUniversal/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Gradients/SvgRadialGradientElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Mntone.SvgForXaml.Primitives;
4 | using Windows.Data.Xml.Dom;
5 |
6 | namespace Mntone.SvgForXaml.Gradients
7 | {
8 | [System.Diagnostics.DebuggerDisplay("RadialGradient: Center = ({this.CenterX}, {this.CenterY}), Radius = {this.Radius}, Focus = ({this.FocusX}, {this.FocusY})")]
9 | public sealed class SvgRadialGradientElement : SvgGradientElement
10 | {
11 | internal SvgRadialGradientElement(INode parent, XmlElement element)
12 | : base(parent, element)
13 | {
14 | this.CenterX = element.ParseCoordinate("cx", 0.5F);
15 | this.CenterY = element.ParseCoordinate("cy", 0.5F);
16 | this.Radius = element.ParseLength("r", 0.5F);
17 | this.FocusX = element.ParseCoordinate("fx", this.CenterX);
18 | this.FocusY = element.ParseCoordinate("fy", this.CenterY);
19 | }
20 |
21 | public override string TagName => "radialGradient";
22 | public SvgLength CenterX { get; }
23 | public SvgLength CenterY { get; }
24 | public SvgLength Radius { get; }
25 | public SvgLength FocusX { get; }
26 | public SvgLength FocusY { get; }
27 |
28 | #region ISvgLocatable
29 | public override SvgRect GetBBox()
30 | {
31 | var radius = this.Radius.ValueAsPixel;
32 | var diameter = 2.0F * radius;
33 | return new SvgRect(this.CenterX.ValueAsPixel - radius, this.CenterY.ValueAsPixel - radius, diameter, diameter);
34 | }
35 | #endregion
36 | }
37 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentCurveToQuadraticSmooth.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegmentCurveToQuadraticSmoothBase : SvgPathSegment
4 | {
5 | protected internal SvgPathSegmentCurveToQuadraticSmoothBase(float x, float y) { this.X = x; this.Y = y; }
6 |
7 | public float X { get; }
8 | public float Y { get; }
9 |
10 | public static SvgPathSegmentCurveToQuadraticSmoothBase Create(float x, float y, bool isAbsolute) => isAbsolute
11 | ? (SvgPathSegmentCurveToQuadraticSmoothBase)new SvgPathSegmentCurveToQuadraticSmoothAbsolute(x, y)
12 | : new SvgPathSegmentCurveToQuadraticSmoothRelative(x, y);
13 | }
14 |
15 | [System.Diagnostics.DebuggerDisplay("T{this.X},{this.Y}")]
16 | public sealed class SvgPathSegmentCurveToQuadraticSmoothAbsolute : SvgPathSegmentCurveToQuadraticSmoothBase
17 | {
18 | public SvgPathSegmentCurveToQuadraticSmoothAbsolute(float x, float y) : base(x, y) { }
19 |
20 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.CurveToQuadraticSmoothAbsolute;
21 | public override sealed char PathSegmentTypeAsLetter => 'T';
22 | }
23 |
24 | [System.Diagnostics.DebuggerDisplay("t{this.X},{this.Y}")]
25 | public sealed class SvgPathSegmentCurveToQuadraticSmoothRelative : SvgPathSegmentCurveToQuadraticSmoothBase
26 | {
27 | public SvgPathSegmentCurveToQuadraticSmoothRelative(float x, float y) : base(x, y) { }
28 |
29 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.CurveToQuadraticSmoothRelative;
30 | public override sealed char PathSegmentTypeAsLetter => 't';
31 | }
32 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml.DemoApp/Mntone.SvgForXaml.DemoApp.Windows/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 | Mntone.SvgForXaml.DemoApp.Windows
10 | mntone
11 | Assets\StoreLogo.png
12 |
13 |
14 |
15 | 6.3.0
16 | 6.3.0
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
27 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Gradients/SvgLinearGradientElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Mntone.SvgForXaml.Primitives;
4 | using Windows.Data.Xml.Dom;
5 |
6 | namespace Mntone.SvgForXaml.Gradients
7 | {
8 | [System.Diagnostics.DebuggerDisplay("LinearGradient: 1 = ({this.X1}, {this.Y1}), 2 = ({this.X2}, {this.Y2})")]
9 | public sealed class SvgLinearGradientElement : SvgGradientElement
10 | {
11 | internal SvgLinearGradientElement(INode parent, XmlElement element)
12 | : base(parent, element)
13 | {
14 | this.X1 = element.ParseCoordinate("x1", 0.0F);
15 | this.Y1 = element.ParseCoordinate("y1", 0.0F);
16 | this.X2 = element.ParseCoordinate("x2", 1.0F);
17 | this.Y2 = element.ParseCoordinate("y2", 0.0F);
18 | }
19 |
20 | public override string TagName => "linearGradient";
21 | public SvgLength X1 { get; }
22 | public SvgLength Y1 { get; }
23 | public SvgLength X2 { get; }
24 | public SvgLength Y2 { get; }
25 |
26 | #region ISvgLocatable
27 | public override SvgRect GetBBox()
28 | {
29 | float left, right;
30 | if (this.X1 < this.X2)
31 | {
32 | left = this.X1.ValueAsPixel;
33 | right = this.X2.ValueAsPixel;
34 | }
35 | else
36 | {
37 | left = this.X2.ValueAsPixel;
38 | right = this.X1.ValueAsPixel;
39 | }
40 |
41 | float top, bottom;
42 | if (this.Y1 < this.Y2)
43 | {
44 | top = this.Y1.ValueAsPixel;
45 | bottom = this.Y2.ValueAsPixel;
46 | }
47 | else
48 | {
49 | top = this.Y2.ValueAsPixel;
50 | bottom = this.Y1.ValueAsPixel;
51 | }
52 | return new SvgRect(left, top, right - left, bottom - top);
53 | }
54 | #endregion
55 | }
56 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.WindowsUniversal/Properties/Mntone.SvgForXaml.rd.xml:
--------------------------------------------------------------------------------
1 |
2 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Internal/SvgStylableHelper.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using System.Linq;
3 | using Windows.Data.Xml.Dom;
4 |
5 | namespace Mntone.SvgForXaml.Internal
6 | {
7 | internal sealed class SvgStylableHelper
8 | {
9 | private static readonly string[] PRESENTATION_ATTRIBUTE_NAMES =
10 | {
11 | "color",
12 | "fill",
13 | "fill-opacity",
14 | "fill-rule",
15 | "stroke",
16 | "stroke-width",
17 | "stroke-linecap",
18 | "stroke-linejoin",
19 | "stroke-miterlimit",
20 | "stroke-opacity",
21 | "stop-color",
22 | "stop-opacity",
23 | "clip-path",
24 | "clip-rule",
25 | "opacity",
26 | };
27 |
28 | public SvgStylableHelper(ISvgStylable parent, XmlElement element)
29 | {
30 | this.ClassName = element.GetAttribute("class");
31 | this.Style = new CssStyleDeclaration(parent, element.GetAttribute("style"));
32 |
33 | foreach (var pn in PRESENTATION_ATTRIBUTE_NAMES)
34 | {
35 | var value = element.GetAttribute(pn);
36 | if (!string.IsNullOrWhiteSpace(value)) this.Style.SetProperty(pn, value, string.Empty, true);
37 | }
38 | }
39 |
40 | internal SvgStylableHelper DeepCopy(ISvgStylable parent)
41 | {
42 | var obj = (SvgStylableHelper)this.MemberwiseClone();
43 | obj.Style = this.Style.DeepCopy(parent);
44 | return obj;
45 | }
46 |
47 | public string ClassName { get; }
48 | public CssStyleDeclaration Style { get; private set; }
49 |
50 | public ICssValue GetPresentationAttribute(string name)
51 | {
52 | if (this.Style == null) return null;
53 |
54 | if (PRESENTATION_ATTRIBUTE_NAMES.Any(pn => pn == name))
55 | {
56 | return this.Style.GetPropertyCssValue(name);
57 | }
58 | return null;
59 | }
60 | }
61 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/SvgGroupElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Mntone.SvgForXaml.Primitives;
4 | using Windows.Data.Xml.Dom;
5 |
6 | namespace Mntone.SvgForXaml
7 | {
8 | public sealed class SvgGroupElement : SvgElement, ISvgStylable, ISvgTransformable
9 | {
10 | internal SvgGroupElement(INode parent, XmlElement element)
11 | : base(parent, element)
12 | {
13 | this._stylableHelper = new SvgStylableHelper(this, element);
14 | this._transformableHelper = new SvgTransformableHelper(element);
15 | }
16 |
17 | protected override void DeepCopy(SvgElement element)
18 | {
19 | var casted = (SvgGroupElement)element;
20 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
21 | casted._transformableHelper = this._transformableHelper.DeepCopy();
22 | }
23 |
24 | public override string TagName => "g";
25 |
26 | #region ISvgStylable
27 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
28 | private SvgStylableHelper _stylableHelper;
29 | public string ClassName => this._stylableHelper.ClassName;
30 | public CssStyleDeclaration Style => this._stylableHelper.Style;
31 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
32 | #endregion
33 |
34 | #region ISvgLocatable
35 | public SvgRect GetBBox() => SvgLocatableHelper.GetUnionBBox(this);
36 | #endregion
37 |
38 | #region ISvgTransformable
39 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
40 | private SvgTransformableHelper _transformableHelper;
41 | public SvgTransformCollection Transform => this._transformableHelper.Transform;
42 | #endregion
43 | }
44 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/SvgDefinitionsElement.cs:
--------------------------------------------------------------------------------
1 | using Mntone.SvgForXaml.Interfaces;
2 | using Mntone.SvgForXaml.Internal;
3 | using Mntone.SvgForXaml.Primitives;
4 | using Windows.Data.Xml.Dom;
5 |
6 | namespace Mntone.SvgForXaml
7 | {
8 | public sealed class SvgDefinitionsElement : SvgElement, ISvgStylable, ISvgTransformable
9 | {
10 | internal SvgDefinitionsElement(INode parent, XmlElement element)
11 | : base(parent, element)
12 | {
13 | this._stylableHelper = new SvgStylableHelper(this, element);
14 | this._transformableHelper = new SvgTransformableHelper(element);
15 | }
16 |
17 | protected override void DeepCopy(SvgElement element)
18 | {
19 | var casted = (SvgDefinitionsElement)element;
20 | casted._stylableHelper = this._stylableHelper.DeepCopy(casted);
21 | casted._transformableHelper = this._transformableHelper.DeepCopy();
22 | }
23 |
24 | public override string TagName => "defs";
25 |
26 | #region ISvgStylable
27 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
28 | private SvgStylableHelper _stylableHelper;
29 | public string ClassName => this._stylableHelper.ClassName;
30 | public CssStyleDeclaration Style => this._stylableHelper.Style;
31 | public ICssValue GetPresentationAttribute(string name) => this._stylableHelper.GetPresentationAttribute(name);
32 | #endregion
33 |
34 | #region ISvgLocatable
35 | public SvgRect GetBBox() => SvgLocatableHelper.GetUnionBBox(this);
36 | #endregion
37 |
38 | #region ISvgTransformable
39 | [System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
40 | private SvgTransformableHelper _transformableHelper;
41 | public SvgTransformCollection Transform => this._transformableHelper.Transform;
42 | #endregion
43 | }
44 | }
--------------------------------------------------------------------------------
/Mntone.SvgForXaml/Mntone.SvgForXaml.Shared/Path/SvgPathSegmentCurveToQuadratic.cs:
--------------------------------------------------------------------------------
1 | namespace Mntone.SvgForXaml.Path
2 | {
3 | public abstract class SvgPathSegmentCurveToQuadraticBase : SvgPathSegment
4 | {
5 | protected internal SvgPathSegmentCurveToQuadraticBase(float x1, float y1, float x, float y)
6 | {
7 | this.X1 = x1;
8 | this.Y1 = y1;
9 | this.X = x;
10 | this.Y = y;
11 | }
12 |
13 | public float X1 { get; }
14 | public float Y1 { get; }
15 | public float X { get; }
16 | public float Y { get; }
17 |
18 | public static SvgPathSegmentCurveToQuadraticBase Create(float x1, float y1, float x, float y, bool isAbsolute) => isAbsolute
19 | ? (SvgPathSegmentCurveToQuadraticBase)new SvgPathSegmentCurveToQuadraticAbsolute(x1, y1, x, y)
20 | : new SvgPathSegmentCurveToQuadraticRelative(x1, y1, x, y);
21 | }
22 |
23 | [System.Diagnostics.DebuggerDisplay("Q{this.X1},{this.Y1} {this.X},{this.Y}")]
24 | public sealed class SvgPathSegmentCurveToQuadraticAbsolute : SvgPathSegmentCurveToQuadraticBase
25 | {
26 | public SvgPathSegmentCurveToQuadraticAbsolute(float x1, float y1, float x, float y) : base(x1, y1, x, y) { }
27 |
28 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.CurveToQuadraticAbsolute;
29 | public override sealed char PathSegmentTypeAsLetter => 'Q';
30 | }
31 |
32 | [System.Diagnostics.DebuggerDisplay("q{this.X1},{this.Y1} {this.X},{this.Y}")]
33 | public sealed class SvgPathSegmentCurveToQuadraticRelative : SvgPathSegmentCurveToQuadraticBase
34 | {
35 | public SvgPathSegmentCurveToQuadraticRelative(float x1, float y1, float x, float y) : base(x1, y1, x, y) { }
36 |
37 | public override SvgPathSegmentType PathSegmentType => SvgPathSegmentType.CurveToQuadraticRelative;
38 | public override sealed char PathSegmentTypeAsLetter => 'q';
39 | }
40 | }
--------------------------------------------------------------------------------