Commit 7400ea08 authored by H1Gdev's avatar H1Gdev Committed by mrbean-bremen
Browse files

Output text from SVG file.

parent dfb495af
......@@ -28,6 +28,11 @@ namespace SVGViewer
{
SvgDocument svgDoc = SvgDocument.Open(openSvgFile.FileName);
RenderSvg(svgDoc);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.XmlResolver = null;
xmlDoc.Load(openSvgFile.FileName);
textBox1.Text = xmlDoc.InnerXml;
}
}
catch
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment