How do I display vector graphics (SVG) in a Windows Forms application?

前端 未结 2 1572
悲哀的现实
悲哀的现实 2021-01-11 20:36

Is there a way (preferably a control) to display vector graphics (preferably SVG) in a Windows Forms application?

I\'m guessing that this would be e

相关标签:
2条回答
  • 2021-01-11 21:08

    You don't have to migrate your project to use WPF. Windows Forms projects can embed WPF controls. Check out SVGImage Control.

    0 讨论(0)
  • 2021-01-11 21:13

    GDI+ and the Graphics class can do vector-graphics.

    For SVG, you might try to load it into the WebBrowser control...

    0 讨论(0)
提交回复
热议问题