komorra / NodeEditorWinforms

Node based user control / editor for Windows Forms
MIT License
507 stars 142 forks source link

Update NodesControl.cs - ExportToXml bug fix #11

Open pmarchini opened 5 years ago

pmarchini commented 5 years ago

var xmlConn = (XmlElement)nodes.AppendChild(xml.CreateElement("Connection")); update to var xmlConn = (XmlElement)connections.AppendChild(xml.CreateElement("Connection"));

At the moment the xml in output is not formatted in the right way.