Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display svg in Metro App with c# and xaml

I'm working at a Windows 8 Metro Application with XAML and C#

I have got a Uri to a SVG Image, which really works, but I have no Idea how to get this Image and display it in the XAML.

Or is it impossible to work with SVG în .NET Core?

like image 682
SwissPrime Avatar asked Oct 08 '22 17:10

SwissPrime


1 Answers

One way could be to convert the SVG to XAML paths - which you can display in any XAML view/control. I use this approach to show vector icons in my app. Do a quick search for SVG to(http://benpittoors.wordpress.com/2009/03/17/convert-svg-to-xaml/)

like image 88
Krishna Avatar answered Oct 10 '22 09:10

Krishna