├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── dotnet.yml │ ├── dotnetpull.yml │ └── gh-pages.yml ├── .gitignore ├── Docs ├── .gitignore ├── Readme.md ├── api │ ├── .gitignore │ └── index.md ├── articles │ ├── intro.md │ ├── license.md │ └── toc.yml ├── docfx.json ├── images │ ├── dotnetprojects.png │ └── sample.png ├── index.md ├── template │ └── public │ │ ├── main.css │ │ └── main.js └── toc.yml ├── GitVersion.yml ├── LICENSE ├── README.md ├── Samples ├── ClipArtViewer │ ├── App.net40.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── ClipArtViewer.VS2019.csproj │ ├── ClipArtViewer.csproj │ ├── ClipArtViewer.ico │ ├── DebugForm.xaml │ ├── DebugForm.xaml.cs │ ├── FullSizeForm.xaml │ ├── FullSizeForm.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SVGObjectTree.cs │ ├── SVGViewCanvas.cs │ ├── SizeTypeForm.xaml │ ├── SizeTypeForm.xaml.cs │ └── app.config ├── CustomBrushesExample │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── BrushDictionary.cs │ ├── CustomBrushesExample.VS2019.csproj │ ├── CustomBrushesExample.csproj │ ├── CustomBrushesExample.ico │ ├── Images │ │ └── test_3.svg │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Example │ ├── App.xaml │ ├── App.xaml.cs │ ├── Example.VS2019.csproj │ ├── Example.csproj │ ├── Example.ico │ ├── Images │ │ ├── 1.svg │ │ ├── 171.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── 4.svg │ │ ├── 5.svg │ │ ├── 6.svg │ │ ├── Human_body_proportions2_svg.svg │ │ ├── Soccer_Simple.svg │ │ ├── Soccer_ball_animated.svg │ │ ├── acid1.css │ │ ├── acid1.svg │ │ ├── acid1_TextOnly.svg │ │ ├── bb.svg │ │ ├── boldgreen.svg │ │ ├── brush.svg │ │ ├── clipping_css.svg │ │ ├── error.svg │ │ ├── example radgrad01.svg │ │ ├── example8.1.test01.svg │ │ ├── raupen.jpg │ │ ├── rect.svg │ │ ├── test_3.svg │ │ ├── tiger.svg │ │ └── tombigel_green_router.svg │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── alphachannel.svg │ │ └── television_comic.svg │ └── raupen.jpg └── IconConverterSample │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── IconConverterSample.VS2019.csproj │ ├── IconConverterSample.csproj │ ├── IconConverterSample.ico │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PageMultiple.xaml │ ├── PageMultiple.xaml.cs │ ├── PageOther.xaml │ ├── PageOther.xaml.cs │ ├── PageSingle.xaml │ ├── PageSingle.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── Resources │ ├── Binding.svg │ ├── Hypocolius.svg │ └── ListView.svg ├── Source ├── SVGImage.VS2019.sln ├── SVGImage.sln └── SVGImage │ ├── DotNetProjects.SVGImage.VS2019.csproj │ ├── DotNetProjects.SVGImage.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── SVG │ ├── Animation │ │ ├── Animate.cs │ │ ├── AnimateColor.cs │ │ ├── AnimateMotion.cs │ │ ├── AnimateTransform.cs │ │ ├── AnimateTransformType.cs │ │ └── AnimationBase.cs │ ├── ClipArtElement.cs │ ├── FileLoaders │ │ ├── FileSystemLoader.cs │ │ └── IExternalFileLoader.cs │ ├── Fill.cs │ ├── Filters │ │ ├── Filter.cs │ │ ├── FilterBaseFe.cs │ │ └── FilterFeGaussianBlur.cs │ ├── PaintServers │ │ ├── CurrentColorPaintServer.cs │ │ ├── GradientColorPaintServer.cs │ │ ├── InheritPaintServer.cs │ │ ├── LinearGradientColorPaintServer.cs │ │ ├── PaintServer.cs │ │ ├── PaintServerManager.cs │ │ ├── PatternPaintServer.cs │ │ ├── RadialGradientColorPaintServer.cs │ │ └── SolidColorPaintServer.cs │ ├── SVG.cs │ ├── SVGFeatures.cs │ ├── SVGImage.cs │ ├── SVGRender.cs │ ├── SVGTags.cs │ ├── Shapes │ │ ├── CharacterLayout.cs │ │ ├── CircleShape.cs │ │ ├── Clip.cs │ │ ├── EllipseShape.cs │ │ ├── Group.cs │ │ ├── ITextChild.cs │ │ ├── ITextNode.cs │ │ ├── ImageShape.cs │ │ ├── LengthAdjustment.cs │ │ ├── LengthContext.cs │ │ ├── LengthOrientation.cs │ │ ├── LengthPercentageOrNumber.cs │ │ ├── LengthPercentageOrNumberList.cs │ │ ├── LengthUnit.cs │ │ ├── LineShape.cs │ │ ├── PathShape.cs │ │ ├── PolygonShape.cs │ │ ├── PolylineShape.cs │ │ ├── RectangleShape.cs │ │ ├── Shape.cs │ │ ├── Text.cs │ │ ├── TextLengthResolver.cs │ │ ├── TextPath.cs │ │ ├── TextRender.cs │ │ ├── TextRenderBase.cs │ │ ├── TextRenderState.cs │ │ ├── TextShape.cs │ │ ├── TextShapeBase.cs │ │ ├── TextSpan.cs │ │ ├── TextString.cs │ │ ├── UseShape.cs │ │ └── WritingMode.cs │ ├── Stroke.cs │ ├── StyleItem.cs │ ├── SvgIconBase.cs │ ├── SvgIconConverterExtension.cs │ ├── SvgIconExtension.cs │ ├── TextRender2.cs │ ├── TextStyle.cs │ ├── Utils │ │ ├── BaselineHelper.cs │ │ ├── DpiUtil.cs │ │ ├── DrawingGroupSerializer.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FontResolver.cs │ │ ├── GlyphRunUtil.cs │ │ ├── MathUtils.cs │ │ ├── PathUtils.cs │ │ ├── ShapeUtil.cs │ │ ├── StringSplitter.cs │ │ ├── StyleParser.cs │ │ ├── SubAndSuperScriptHelper.cs │ │ ├── TextStyleStack.cs │ │ └── XmlUtil.cs │ └── Visibility.cs │ ├── SVGImage.snk │ └── Themes │ └── Generic.xaml ├── Tests ├── Images │ ├── 1.svg │ ├── 171.svg │ ├── 2.svg │ ├── 3.svg │ ├── 4.svg │ ├── 5.svg │ ├── 6.svg │ ├── CodeProjectLogo.jpg │ ├── Dialog-information.svg │ ├── Dialog-information_on-test1.svg │ ├── Dialog-information_on.svg │ ├── Dialog-information_red-test1.svg │ ├── Dialog-information_red.svg │ ├── Human_body_proportions2_svg.svg │ ├── Soccer_Simple.svg │ ├── Soccer_ball_animated.svg │ ├── aa.svg │ ├── acid1.css │ ├── acid1.svg │ ├── acid2.svg │ ├── alphachannel.svg │ ├── bb.svg │ ├── brush.svg │ ├── clipping.svg │ ├── clipping_css.svg │ ├── computer-aj_aj_ashton_01.svg │ ├── error.svg │ ├── example lingrad01.svg │ ├── example radgrad01.svg │ ├── example3.10.svg │ ├── example3.11.svg │ ├── example3.12.svg │ ├── example3.13.svg │ ├── example3.14.svg │ ├── example3.2.svg │ ├── example3.4.svg │ ├── example3.5.svg │ ├── example3.6.svg │ ├── example3.7.svg │ ├── example3.8.svg │ ├── example3.9.svg │ ├── example4.5.1.svg │ ├── example4.5.svg │ ├── example4.6.svg │ ├── example4.8.svg │ ├── example6.3.svg │ ├── example7.10.svg │ ├── example7.11.svg │ ├── example7.12.svg │ ├── example7.13.svg │ ├── example7.14.svg │ ├── example7.7.svg │ ├── example7.9.svg │ ├── example8.1.svg │ ├── example8.1.test01.svg │ ├── example8.2.svg │ ├── example8.3.svg │ ├── example8.4.svg │ ├── filter.svg │ ├── horse.svg │ ├── jesper.svg │ ├── jktest.svg │ ├── molumen_red_square_error_warning_icon.svg │ ├── molumen_red_square_error_warning_icon_1.svg │ ├── network-transmit-receive[1].svg │ ├── peterm_penguin_with_a_shirt.svg │ ├── raupen.jpg │ ├── rect.svg │ ├── router_andy_fitzsimon_r[1].svg │ ├── software-update-urgent[1].svg │ ├── switch_cisco_nico_[1].svg │ ├── television_comic_2[1].svg │ ├── test1.svg │ ├── test_3.svg │ ├── test_4.svg │ ├── tiger.svg │ ├── tombigel_green_router.svg │ └── tranberry_locked_exclamation_mark_-_padlock.svg ├── Issues │ ├── css-parsing-issue.svg │ └── issue-14.svg ├── Libs │ ├── net40 │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.dll │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ ├── Notifications.Wpf.xml │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ ├── ShellFileDialogs.xml │ │ ├── System.IO.dll │ │ ├── System.Runtime.dll │ │ └── System.Threading.Tasks.dll │ ├── net45 │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ ├── Notifications.Wpf.xml │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── net46 │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ ├── Notifications.Wpf.xml │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── net47 │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ ├── Notifications.Wpf.xml │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── net48 │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ ├── Notifications.Wpf.xml │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── net6.0-windows │ │ ├── Notifications.Wpf.deps.json │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ └── Notifications.Wpf.xml │ ├── net6.0 │ │ ├── ShellFileDialogs.deps.json │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── net7.0-windows │ │ ├── Notifications.Wpf.deps.json │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ └── Notifications.Wpf.xml │ ├── net7.0 │ │ ├── ShellFileDialogs.deps.json │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── net8.0-windows │ │ ├── Notifications.Wpf.deps.json │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ └── Notifications.Wpf.xml │ ├── net8.0 │ │ ├── ShellFileDialogs.deps.json │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml │ ├── netcoreapp3.1 │ │ ├── Notifications.Wpf.deps.json │ │ ├── Notifications.Wpf.dll │ │ ├── Notifications.Wpf.dll.config │ │ └── Notifications.Wpf.xml │ └── netstandard2.1 │ │ ├── ShellFileDialogs.deps.json │ │ ├── ShellFileDialogs.dll │ │ ├── ShellFileDialogs.dll.config │ │ └── ShellFileDialogs.xml ├── Readme.md ├── Svg-Icons.zip ├── SvgTestBox │ ├── App.net40.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── DebugPage.xaml │ ├── DebugPage.xaml.cs │ ├── GridExpander.cs │ ├── Images │ │ ├── Copy.svg │ │ ├── Cut.svg │ │ ├── Debug.svg │ │ ├── Delete.svg │ │ ├── Find.svg │ │ ├── Format.svg │ │ ├── Number.svg │ │ ├── Open.svg │ │ ├── Output.svg │ │ ├── Paste.svg │ │ ├── Redo.svg │ │ ├── Run.svg │ │ ├── Save.svg │ │ ├── Settings.svg │ │ ├── Space.svg │ │ ├── SvgLogo.svg │ │ ├── SvgLogoBasic.svg │ │ ├── Undo.svg │ │ └── WordWrap.svg │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowSettings.cs │ ├── NumericSpinner.xaml │ ├── NumericSpinner.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SvgPage.xaml │ ├── SvgPage.xaml.cs │ ├── SvgResourceColors.xaml │ ├── SvgResourceColors.xaml.cs │ ├── SvgTestBox.VS2019.csproj │ ├── SvgTestBox.csproj │ ├── SvgTestBox.ico │ ├── TextBoxTraceListener.cs │ ├── XamlPage.xaml │ ├── XamlPage.xaml.cs │ └── ZoomBorder.cs └── SvgTestSuites │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── Adorned │ ├── AdornedControl.cs │ ├── AdornerPlacement.cs │ ├── FrameworkElementAdorner.cs │ ├── LoadingWait.xaml │ └── LoadingWait.xaml.cs │ ├── App.ico │ ├── App.net40.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── DebugPage.xaml │ ├── DebugPage.xaml.cs │ ├── DrawingPage.xaml │ ├── DrawingPage.xaml.cs │ ├── HtmlConverter │ ├── HtmlCssParser.cs │ ├── HtmlFromXamlConverter.cs │ ├── HtmlLexicalAnalyzer.cs │ ├── HtmlParser.cs │ ├── HtmlSchema.cs │ ├── HtmlToXamlConverter.cs │ └── HtmlTokenType.cs │ ├── ITestPage.cs │ ├── Images │ ├── Copy.svg │ ├── Cut.svg │ ├── Debug.svg │ ├── Delete.svg │ ├── Find.svg │ ├── FolderClose.svg │ ├── FolderOpen.svg │ ├── Format.svg │ ├── Number.svg │ ├── Open.svg │ ├── Output.svg │ ├── Paste.svg │ ├── Redo.svg │ ├── Run.svg │ ├── Save.svg │ ├── Settings.svg │ ├── Space.svg │ ├── SvgLogo.svg │ ├── SvgLogoBasic.svg │ ├── Test.svg │ ├── TestResultDetail.svg │ ├── TestRunner.svg │ ├── Undo.svg │ ├── Web.svg │ └── WordWrap.svg │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowSettings.cs │ ├── OptionSettings.cs │ ├── Output │ ├── SvgTestResults11.xml │ ├── SvgTestSettings.xml │ ├── SvgTestSuite10.xml │ ├── SvgTestSuite11.xml │ └── SvgTestSuite12.xml │ ├── PromptDialog.xaml │ ├── PromptDialog.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── PanTool.cur │ └── PanToolDown.cur │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── SvgPage.xaml │ ├── SvgPage.xaml.cs │ ├── SvgTestCase.cs │ ├── SvgTestCategory.cs │ ├── SvgTestInfo.cs │ ├── SvgTestResult.cs │ ├── SvgTestResultsPage.xaml │ ├── SvgTestResultsPage.xaml.cs │ ├── SvgTestState.cs │ ├── SvgTestSuite.cs │ ├── SvgTestSuites.VS2019.csproj │ ├── SvgTestSuites.csproj │ ├── TextBoxTraceListener.cs │ ├── XamlPage.xaml │ └── XamlPage.xaml.cs └── appveyor.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/dotnetpull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.github/workflows/dotnetpull.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/.gitignore -------------------------------------------------------------------------------- /Docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/Readme.md -------------------------------------------------------------------------------- /Docs/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/api/.gitignore -------------------------------------------------------------------------------- /Docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/api/index.md -------------------------------------------------------------------------------- /Docs/articles/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/articles/intro.md -------------------------------------------------------------------------------- /Docs/articles/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/articles/license.md -------------------------------------------------------------------------------- /Docs/articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/articles/toc.yml -------------------------------------------------------------------------------- /Docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/docfx.json -------------------------------------------------------------------------------- /Docs/images/dotnetprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/images/dotnetprojects.png -------------------------------------------------------------------------------- /Docs/images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/images/sample.png -------------------------------------------------------------------------------- /Docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/index.md -------------------------------------------------------------------------------- /Docs/template/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/template/public/main.css -------------------------------------------------------------------------------- /Docs/template/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/template/public/main.js -------------------------------------------------------------------------------- /Docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Docs/toc.yml -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- 1 | next-version: 5.1.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/README.md -------------------------------------------------------------------------------- /Samples/ClipArtViewer/App.net40.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/App.net40.config -------------------------------------------------------------------------------- /Samples/ClipArtViewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/App.xaml -------------------------------------------------------------------------------- /Samples/ClipArtViewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/App.xaml.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/ClipArtViewer.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/ClipArtViewer.VS2019.csproj -------------------------------------------------------------------------------- /Samples/ClipArtViewer/ClipArtViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/ClipArtViewer.csproj -------------------------------------------------------------------------------- /Samples/ClipArtViewer/ClipArtViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/ClipArtViewer.ico -------------------------------------------------------------------------------- /Samples/ClipArtViewer/DebugForm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/DebugForm.xaml -------------------------------------------------------------------------------- /Samples/ClipArtViewer/DebugForm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/DebugForm.xaml.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/FullSizeForm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/FullSizeForm.xaml -------------------------------------------------------------------------------- /Samples/ClipArtViewer/FullSizeForm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/FullSizeForm.xaml.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/ClipArtViewer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/ClipArtViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/ClipArtViewer/SVGObjectTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/SVGObjectTree.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/SVGViewCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/SVGViewCanvas.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/SizeTypeForm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/SizeTypeForm.xaml -------------------------------------------------------------------------------- /Samples/ClipArtViewer/SizeTypeForm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/SizeTypeForm.xaml.cs -------------------------------------------------------------------------------- /Samples/ClipArtViewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/ClipArtViewer/app.config -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/App.config -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/App.xaml -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/App.xaml.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/BrushDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/BrushDictionary.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/CustomBrushesExample.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/CustomBrushesExample.VS2019.csproj -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/CustomBrushesExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/CustomBrushesExample.csproj -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/CustomBrushesExample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/CustomBrushesExample.ico -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/Images/test_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/Images/test_3.svg -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/MainWindowViewModel.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/CustomBrushesExample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/CustomBrushesExample/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/Example/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/App.xaml -------------------------------------------------------------------------------- /Samples/Example/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Example/Example.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Example.VS2019.csproj -------------------------------------------------------------------------------- /Samples/Example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Example.csproj -------------------------------------------------------------------------------- /Samples/Example/Example.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Example.ico -------------------------------------------------------------------------------- /Samples/Example/Images/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/1.svg -------------------------------------------------------------------------------- /Samples/Example/Images/171.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/171.svg -------------------------------------------------------------------------------- /Samples/Example/Images/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/2.svg -------------------------------------------------------------------------------- /Samples/Example/Images/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/3.svg -------------------------------------------------------------------------------- /Samples/Example/Images/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/4.svg -------------------------------------------------------------------------------- /Samples/Example/Images/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/5.svg -------------------------------------------------------------------------------- /Samples/Example/Images/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/6.svg -------------------------------------------------------------------------------- /Samples/Example/Images/Human_body_proportions2_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/Human_body_proportions2_svg.svg -------------------------------------------------------------------------------- /Samples/Example/Images/Soccer_Simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/Soccer_Simple.svg -------------------------------------------------------------------------------- /Samples/Example/Images/Soccer_ball_animated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/Soccer_ball_animated.svg -------------------------------------------------------------------------------- /Samples/Example/Images/acid1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/acid1.css -------------------------------------------------------------------------------- /Samples/Example/Images/acid1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/acid1.svg -------------------------------------------------------------------------------- /Samples/Example/Images/acid1_TextOnly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/acid1_TextOnly.svg -------------------------------------------------------------------------------- /Samples/Example/Images/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/bb.svg -------------------------------------------------------------------------------- /Samples/Example/Images/boldgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/boldgreen.svg -------------------------------------------------------------------------------- /Samples/Example/Images/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/brush.svg -------------------------------------------------------------------------------- /Samples/Example/Images/clipping_css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/clipping_css.svg -------------------------------------------------------------------------------- /Samples/Example/Images/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/error.svg -------------------------------------------------------------------------------- /Samples/Example/Images/example radgrad01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/example radgrad01.svg -------------------------------------------------------------------------------- /Samples/Example/Images/example8.1.test01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/example8.1.test01.svg -------------------------------------------------------------------------------- /Samples/Example/Images/raupen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/raupen.jpg -------------------------------------------------------------------------------- /Samples/Example/Images/rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/rect.svg -------------------------------------------------------------------------------- /Samples/Example/Images/test_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/test_3.svg -------------------------------------------------------------------------------- /Samples/Example/Images/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/tiger.svg -------------------------------------------------------------------------------- /Samples/Example/Images/tombigel_green_router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Images/tombigel_green_router.svg -------------------------------------------------------------------------------- /Samples/Example/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/Example/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/Example/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/Example/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/Example/Resources/alphachannel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Resources/alphachannel.svg -------------------------------------------------------------------------------- /Samples/Example/Resources/television_comic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/Resources/television_comic.svg -------------------------------------------------------------------------------- /Samples/Example/raupen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/Example/raupen.jpg -------------------------------------------------------------------------------- /Samples/IconConverterSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/App.config -------------------------------------------------------------------------------- /Samples/IconConverterSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/App.xaml -------------------------------------------------------------------------------- /Samples/IconConverterSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/App.xaml.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/IconConverterSample.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/IconConverterSample.VS2019.csproj -------------------------------------------------------------------------------- /Samples/IconConverterSample/IconConverterSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/IconConverterSample.csproj -------------------------------------------------------------------------------- /Samples/IconConverterSample/IconConverterSample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/IconConverterSample.ico -------------------------------------------------------------------------------- /Samples/IconConverterSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/IconConverterSample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/PageMultiple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/PageMultiple.xaml -------------------------------------------------------------------------------- /Samples/IconConverterSample/PageMultiple.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/PageMultiple.xaml.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/PageOther.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/PageOther.xaml -------------------------------------------------------------------------------- /Samples/IconConverterSample/PageOther.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/PageOther.xaml.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/PageSingle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/PageSingle.xaml -------------------------------------------------------------------------------- /Samples/IconConverterSample/PageSingle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/PageSingle.xaml.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/IconConverterSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/IconConverterSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/IconConverterSample/Resources/Binding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Resources/Binding.svg -------------------------------------------------------------------------------- /Samples/IconConverterSample/Resources/Hypocolius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Resources/Hypocolius.svg -------------------------------------------------------------------------------- /Samples/IconConverterSample/Resources/ListView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Samples/IconConverterSample/Resources/ListView.svg -------------------------------------------------------------------------------- /Source/SVGImage.VS2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage.VS2019.sln -------------------------------------------------------------------------------- /Source/SVGImage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage.sln -------------------------------------------------------------------------------- /Source/SVGImage/DotNetProjects.SVGImage.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/DotNetProjects.SVGImage.VS2019.csproj -------------------------------------------------------------------------------- /Source/SVGImage/DotNetProjects.SVGImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/DotNetProjects.SVGImage.csproj -------------------------------------------------------------------------------- /Source/SVGImage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Animation/Animate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Animation/Animate.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Animation/AnimateColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Animation/AnimateColor.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Animation/AnimateMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Animation/AnimateMotion.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Animation/AnimateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Animation/AnimateTransform.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Animation/AnimateTransformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Animation/AnimateTransformType.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Animation/AnimationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Animation/AnimationBase.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/ClipArtElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/ClipArtElement.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/FileLoaders/FileSystemLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/FileLoaders/FileSystemLoader.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/FileLoaders/IExternalFileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/FileLoaders/IExternalFileLoader.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Fill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Fill.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Filters/Filter.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Filters/FilterBaseFe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Filters/FilterBaseFe.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Filters/FilterFeGaussianBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Filters/FilterFeGaussianBlur.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/GradientColorPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/GradientColorPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/InheritPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/InheritPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/LinearGradientColorPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/LinearGradientColorPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/PaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/PaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/PaintServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/PaintServerManager.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/PatternPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/PatternPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/RadialGradientColorPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/RadialGradientColorPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/PaintServers/SolidColorPaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/PaintServers/SolidColorPaintServer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SVG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SVG.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SVGFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SVGFeatures.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SVGImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SVGImage.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SVGRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SVGRender.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SVGTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SVGTags.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/CharacterLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/CharacterLayout.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/CircleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/CircleShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/Clip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/Clip.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/EllipseShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/EllipseShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/Group.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/ITextChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/ITextChild.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/ITextNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/ITextNode.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/ImageShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/ImageShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LengthAdjustment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LengthAdjustment.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LengthContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LengthContext.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LengthOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LengthOrientation.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LengthPercentageOrNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LengthPercentageOrNumber.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LengthPercentageOrNumberList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LengthPercentageOrNumberList.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LengthUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LengthUnit.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/LineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/LineShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/PathShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/PathShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/PolygonShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/PolygonShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/PolylineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/PolylineShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/RectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/RectangleShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/Shape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/Text.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextLengthResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextLengthResolver.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextPath.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextRender.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextRenderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextRenderBase.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextRenderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextRenderState.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextShapeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextShapeBase.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextSpan.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/TextString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/TextString.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/UseShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/UseShape.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Shapes/WritingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Shapes/WritingMode.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Stroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Stroke.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/StyleItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/StyleItem.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SvgIconBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SvgIconBase.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SvgIconConverterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SvgIconConverterExtension.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/SvgIconExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/SvgIconExtension.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/TextRender2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/TextRender2.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/TextStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/TextStyle.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/BaselineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/BaselineHelper.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/DpiUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/DpiUtil.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/DrawingGroupSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/DrawingGroupSerializer.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/FontResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/FontResolver.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/GlyphRunUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/GlyphRunUtil.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/MathUtils.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/PathUtils.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/ShapeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/ShapeUtil.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/StringSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/StringSplitter.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/StyleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/StyleParser.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/SubAndSuperScriptHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/SubAndSuperScriptHelper.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/TextStyleStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/TextStyleStack.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Utils/XmlUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Utils/XmlUtil.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVG/Visibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVG/Visibility.cs -------------------------------------------------------------------------------- /Source/SVGImage/SVGImage.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/SVGImage.snk -------------------------------------------------------------------------------- /Source/SVGImage/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Source/SVGImage/Themes/Generic.xaml -------------------------------------------------------------------------------- /Tests/Images/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/1.svg -------------------------------------------------------------------------------- /Tests/Images/171.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/171.svg -------------------------------------------------------------------------------- /Tests/Images/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/2.svg -------------------------------------------------------------------------------- /Tests/Images/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/3.svg -------------------------------------------------------------------------------- /Tests/Images/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/4.svg -------------------------------------------------------------------------------- /Tests/Images/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/5.svg -------------------------------------------------------------------------------- /Tests/Images/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/6.svg -------------------------------------------------------------------------------- /Tests/Images/CodeProjectLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/CodeProjectLogo.jpg -------------------------------------------------------------------------------- /Tests/Images/Dialog-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Dialog-information.svg -------------------------------------------------------------------------------- /Tests/Images/Dialog-information_on-test1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Dialog-information_on-test1.svg -------------------------------------------------------------------------------- /Tests/Images/Dialog-information_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Dialog-information_on.svg -------------------------------------------------------------------------------- /Tests/Images/Dialog-information_red-test1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Dialog-information_red-test1.svg -------------------------------------------------------------------------------- /Tests/Images/Dialog-information_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Dialog-information_red.svg -------------------------------------------------------------------------------- /Tests/Images/Human_body_proportions2_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Human_body_proportions2_svg.svg -------------------------------------------------------------------------------- /Tests/Images/Soccer_Simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Soccer_Simple.svg -------------------------------------------------------------------------------- /Tests/Images/Soccer_ball_animated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/Soccer_ball_animated.svg -------------------------------------------------------------------------------- /Tests/Images/aa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/aa.svg -------------------------------------------------------------------------------- /Tests/Images/acid1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/acid1.css -------------------------------------------------------------------------------- /Tests/Images/acid1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/acid1.svg -------------------------------------------------------------------------------- /Tests/Images/acid2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/acid2.svg -------------------------------------------------------------------------------- /Tests/Images/alphachannel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/alphachannel.svg -------------------------------------------------------------------------------- /Tests/Images/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/bb.svg -------------------------------------------------------------------------------- /Tests/Images/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/brush.svg -------------------------------------------------------------------------------- /Tests/Images/clipping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/clipping.svg -------------------------------------------------------------------------------- /Tests/Images/clipping_css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/clipping_css.svg -------------------------------------------------------------------------------- /Tests/Images/computer-aj_aj_ashton_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/computer-aj_aj_ashton_01.svg -------------------------------------------------------------------------------- /Tests/Images/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/error.svg -------------------------------------------------------------------------------- /Tests/Images/example lingrad01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example lingrad01.svg -------------------------------------------------------------------------------- /Tests/Images/example radgrad01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example radgrad01.svg -------------------------------------------------------------------------------- /Tests/Images/example3.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.10.svg -------------------------------------------------------------------------------- /Tests/Images/example3.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.11.svg -------------------------------------------------------------------------------- /Tests/Images/example3.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.12.svg -------------------------------------------------------------------------------- /Tests/Images/example3.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.13.svg -------------------------------------------------------------------------------- /Tests/Images/example3.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.14.svg -------------------------------------------------------------------------------- /Tests/Images/example3.2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.2.svg -------------------------------------------------------------------------------- /Tests/Images/example3.4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.4.svg -------------------------------------------------------------------------------- /Tests/Images/example3.5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.5.svg -------------------------------------------------------------------------------- /Tests/Images/example3.6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.6.svg -------------------------------------------------------------------------------- /Tests/Images/example3.7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.7.svg -------------------------------------------------------------------------------- /Tests/Images/example3.8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.8.svg -------------------------------------------------------------------------------- /Tests/Images/example3.9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example3.9.svg -------------------------------------------------------------------------------- /Tests/Images/example4.5.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example4.5.1.svg -------------------------------------------------------------------------------- /Tests/Images/example4.5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example4.5.svg -------------------------------------------------------------------------------- /Tests/Images/example4.6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example4.6.svg -------------------------------------------------------------------------------- /Tests/Images/example4.8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example4.8.svg -------------------------------------------------------------------------------- /Tests/Images/example6.3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example6.3.svg -------------------------------------------------------------------------------- /Tests/Images/example7.10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.10.svg -------------------------------------------------------------------------------- /Tests/Images/example7.11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.11.svg -------------------------------------------------------------------------------- /Tests/Images/example7.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.12.svg -------------------------------------------------------------------------------- /Tests/Images/example7.13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.13.svg -------------------------------------------------------------------------------- /Tests/Images/example7.14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.14.svg -------------------------------------------------------------------------------- /Tests/Images/example7.7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.7.svg -------------------------------------------------------------------------------- /Tests/Images/example7.9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example7.9.svg -------------------------------------------------------------------------------- /Tests/Images/example8.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example8.1.svg -------------------------------------------------------------------------------- /Tests/Images/example8.1.test01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example8.1.test01.svg -------------------------------------------------------------------------------- /Tests/Images/example8.2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example8.2.svg -------------------------------------------------------------------------------- /Tests/Images/example8.3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example8.3.svg -------------------------------------------------------------------------------- /Tests/Images/example8.4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/example8.4.svg -------------------------------------------------------------------------------- /Tests/Images/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/filter.svg -------------------------------------------------------------------------------- /Tests/Images/horse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/horse.svg -------------------------------------------------------------------------------- /Tests/Images/jesper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/jesper.svg -------------------------------------------------------------------------------- /Tests/Images/jktest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/jktest.svg -------------------------------------------------------------------------------- /Tests/Images/molumen_red_square_error_warning_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/molumen_red_square_error_warning_icon.svg -------------------------------------------------------------------------------- /Tests/Images/molumen_red_square_error_warning_icon_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/molumen_red_square_error_warning_icon_1.svg -------------------------------------------------------------------------------- /Tests/Images/network-transmit-receive[1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/network-transmit-receive[1].svg -------------------------------------------------------------------------------- /Tests/Images/peterm_penguin_with_a_shirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/peterm_penguin_with_a_shirt.svg -------------------------------------------------------------------------------- /Tests/Images/raupen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/raupen.jpg -------------------------------------------------------------------------------- /Tests/Images/rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/rect.svg -------------------------------------------------------------------------------- /Tests/Images/router_andy_fitzsimon_r[1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/router_andy_fitzsimon_r[1].svg -------------------------------------------------------------------------------- /Tests/Images/software-update-urgent[1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/software-update-urgent[1].svg -------------------------------------------------------------------------------- /Tests/Images/switch_cisco_nico_[1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/switch_cisco_nico_[1].svg -------------------------------------------------------------------------------- /Tests/Images/television_comic_2[1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/television_comic_2[1].svg -------------------------------------------------------------------------------- /Tests/Images/test1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/test1.svg -------------------------------------------------------------------------------- /Tests/Images/test_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/test_3.svg -------------------------------------------------------------------------------- /Tests/Images/test_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/test_4.svg -------------------------------------------------------------------------------- /Tests/Images/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/tiger.svg -------------------------------------------------------------------------------- /Tests/Images/tombigel_green_router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/tombigel_green_router.svg -------------------------------------------------------------------------------- /Tests/Images/tranberry_locked_exclamation_mark_-_padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Images/tranberry_locked_exclamation_mark_-_padlock.svg -------------------------------------------------------------------------------- /Tests/Issues/css-parsing-issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Issues/css-parsing-issue.svg -------------------------------------------------------------------------------- /Tests/Issues/issue-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Issues/issue-14.svg -------------------------------------------------------------------------------- /Tests/Libs/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net40/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net40/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net40/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net40/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/System.IO.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/System.Runtime.dll -------------------------------------------------------------------------------- /Tests/Libs/net40/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net40/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Tests/Libs/net45/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net45/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net45/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net45/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net45/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net45/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net45/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net45/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net45/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net45/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net45/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net45/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net46/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net46/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net46/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net46/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net46/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net46/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net46/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net46/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net46/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net46/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net46/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net46/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net47/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net47/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net47/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net47/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net47/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net47/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net47/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net47/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net47/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net47/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net47/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net47/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net48/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net48/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net48/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net48/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net48/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net48/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net48/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net48/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net48/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net48/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net48/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net48/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net6.0-windows/Notifications.Wpf.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0-windows/Notifications.Wpf.deps.json -------------------------------------------------------------------------------- /Tests/Libs/net6.0-windows/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0-windows/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net6.0-windows/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0-windows/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net6.0-windows/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0-windows/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net6.0/ShellFileDialogs.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0/ShellFileDialogs.deps.json -------------------------------------------------------------------------------- /Tests/Libs/net6.0/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net6.0/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net6.0/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net6.0/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net7.0-windows/Notifications.Wpf.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0-windows/Notifications.Wpf.deps.json -------------------------------------------------------------------------------- /Tests/Libs/net7.0-windows/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0-windows/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net7.0-windows/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0-windows/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net7.0-windows/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0-windows/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net7.0/ShellFileDialogs.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0/ShellFileDialogs.deps.json -------------------------------------------------------------------------------- /Tests/Libs/net7.0/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net7.0/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net7.0/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net7.0/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/net8.0-windows/Notifications.Wpf.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0-windows/Notifications.Wpf.deps.json -------------------------------------------------------------------------------- /Tests/Libs/net8.0-windows/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0-windows/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/net8.0-windows/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0-windows/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net8.0-windows/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0-windows/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/net8.0/ShellFileDialogs.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0/ShellFileDialogs.deps.json -------------------------------------------------------------------------------- /Tests/Libs/net8.0/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/net8.0/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/net8.0/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/net8.0/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Libs/netcoreapp3.1/Notifications.Wpf.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netcoreapp3.1/Notifications.Wpf.deps.json -------------------------------------------------------------------------------- /Tests/Libs/netcoreapp3.1/Notifications.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netcoreapp3.1/Notifications.Wpf.dll -------------------------------------------------------------------------------- /Tests/Libs/netcoreapp3.1/Notifications.Wpf.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netcoreapp3.1/Notifications.Wpf.dll.config -------------------------------------------------------------------------------- /Tests/Libs/netcoreapp3.1/Notifications.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netcoreapp3.1/Notifications.Wpf.xml -------------------------------------------------------------------------------- /Tests/Libs/netstandard2.1/ShellFileDialogs.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netstandard2.1/ShellFileDialogs.deps.json -------------------------------------------------------------------------------- /Tests/Libs/netstandard2.1/ShellFileDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netstandard2.1/ShellFileDialogs.dll -------------------------------------------------------------------------------- /Tests/Libs/netstandard2.1/ShellFileDialogs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netstandard2.1/ShellFileDialogs.dll.config -------------------------------------------------------------------------------- /Tests/Libs/netstandard2.1/ShellFileDialogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Libs/netstandard2.1/ShellFileDialogs.xml -------------------------------------------------------------------------------- /Tests/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Readme.md -------------------------------------------------------------------------------- /Tests/Svg-Icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/Svg-Icons.zip -------------------------------------------------------------------------------- /Tests/SvgTestBox/App.net40.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/App.net40.config -------------------------------------------------------------------------------- /Tests/SvgTestBox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/App.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/App.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/DebugPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/DebugPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/DebugPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/DebugPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/GridExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/GridExpander.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Copy.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Cut.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Debug.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Delete.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Find.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Format.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Number.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Open.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Output.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Paste.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Redo.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Run.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Save.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Settings.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Space.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/SvgLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/SvgLogo.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/SvgLogoBasic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/SvgLogoBasic.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/Undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/Undo.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/Images/WordWrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Images/WordWrap.svg -------------------------------------------------------------------------------- /Tests/SvgTestBox/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/MainWindow.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/MainWindowSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/MainWindowSettings.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/NumericSpinner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/NumericSpinner.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/NumericSpinner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/NumericSpinner.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/SvgTestBox/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/Properties/Settings.settings -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgResourceColors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgResourceColors.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgResourceColors.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgResourceColors.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgTestBox.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgTestBox.VS2019.csproj -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgTestBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgTestBox.csproj -------------------------------------------------------------------------------- /Tests/SvgTestBox/SvgTestBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/SvgTestBox.ico -------------------------------------------------------------------------------- /Tests/SvgTestBox/TextBoxTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/TextBoxTraceListener.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/XamlPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/XamlPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestBox/XamlPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/XamlPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestBox/ZoomBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestBox/ZoomBorder.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/AboutPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Adorned/AdornedControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Adorned/AdornedControl.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Adorned/AdornerPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Adorned/AdornerPlacement.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Adorned/FrameworkElementAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Adorned/FrameworkElementAdorner.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Adorned/LoadingWait.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Adorned/LoadingWait.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Adorned/LoadingWait.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Adorned/LoadingWait.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/App.ico -------------------------------------------------------------------------------- /Tests/SvgTestSuites/App.net40.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/App.net40.config -------------------------------------------------------------------------------- /Tests/SvgTestSuites/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/App.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/App.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/DebugPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/DebugPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/DebugPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/DebugPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/DrawingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/DrawingPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/DrawingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/DrawingPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlCssParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlCssParser.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlFromXamlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlFromXamlConverter.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlLexicalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlLexicalAnalyzer.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlParser.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlSchema.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlToXamlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlToXamlConverter.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/HtmlConverter/HtmlTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/HtmlConverter/HtmlTokenType.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/ITestPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/ITestPage.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Copy.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Cut.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Debug.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Delete.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Find.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/FolderClose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/FolderClose.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/FolderOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/FolderOpen.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Format.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Number.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Open.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Output.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Paste.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Redo.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Run.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Save.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Settings.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Space.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/SvgLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/SvgLogo.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/SvgLogoBasic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/SvgLogoBasic.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Test.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/TestResultDetail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/TestResultDetail.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/TestRunner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/TestRunner.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Undo.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/Web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/Web.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Images/WordWrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Images/WordWrap.svg -------------------------------------------------------------------------------- /Tests/SvgTestSuites/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/MainWindow.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/MainWindowSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/MainWindowSettings.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/OptionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/OptionSettings.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Output/SvgTestResults11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Output/SvgTestResults11.xml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Output/SvgTestSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Output/SvgTestSettings.xml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Output/SvgTestSuite10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Output/SvgTestSuite10.xml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Output/SvgTestSuite11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Output/SvgTestSuite11.xml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Output/SvgTestSuite12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Output/SvgTestSuite12.xml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/PromptDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/PromptDialog.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/PromptDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/PromptDialog.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Properties/Settings.settings -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Resources/PanTool.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Resources/PanTool.cur -------------------------------------------------------------------------------- /Tests/SvgTestSuites/Resources/PanToolDown.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/Resources/PanToolDown.cur -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SettingsPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestCase.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestCategory.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestInfo.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestResult.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestResultsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestResultsPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestResultsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestResultsPage.xaml.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestState.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestSuite.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestSuites.VS2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestSuites.VS2019.csproj -------------------------------------------------------------------------------- /Tests/SvgTestSuites/SvgTestSuites.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/SvgTestSuites.csproj -------------------------------------------------------------------------------- /Tests/SvgTestSuites/TextBoxTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/TextBoxTraceListener.cs -------------------------------------------------------------------------------- /Tests/SvgTestSuites/XamlPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/XamlPage.xaml -------------------------------------------------------------------------------- /Tests/SvgTestSuites/XamlPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/Tests/SvgTestSuites/XamlPage.xaml.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetprojects/SVGImage/HEAD/appveyor.yml --------------------------------------------------------------------------------