tags:

views:

689

answers:

2

Does anyone know of a way (preferably a control) to display vector graphics (preferably SVG) in a Winforms app?

Im guessing that this would be easy to do with WPF, but I would prefer not to have to migrate the project.

+3  A: 

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

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

Arjan Einbu
+1 WebBrowser is a good, simple idea.
MusiGenesis
A: 

Here are two links that might help you (never used either one, myself):

http://www.jbrowse.com/svgnet/

http://sourceforge.net/projects/svgdomcsharp/

MusiGenesis