I am working with a library that renders part of its state as an SVG document.
I would like to render this in either a Windows Forms or a WPF environment. Is there curre
You could use Forms.WebBrowser with
WebBrowser.Url = new Uri($"file://{pathSvg}");