-1

I'm working on a project using WPF in visual studio 2017. I want to insert a vectorial image (.SVG for an example). How to do it ?

1 Answers1

0

WPF doesn't have SVG support

However you can convert svg into xaml using SharpVector Library.

see for more information. https://www.codeproject.com/Articles/127039/SharpVectors-SVG-Reloaded-An-Introduction

internally it converts your svg element into xaml geometries.

tabby
  • 1,878
  • 1
  • 21
  • 39