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
You don't have to migrate your project to use WPF. Windows Forms projects can embed WPF controls. Check out SVGImage Control.
GDI+ and the Graphics class can do vector-graphics.
For SVG, you might try to load it into the WebBrowser control...