public ChildDocument(string root_text) { root = new MindmapNodeItem(); root.Text = root_text; }
public void InsertNode(MindmapNodeItem parent, MindmapNodeItem node) { }
public ChildDocument() { root = new MindmapNodeItem(); root.Text = "My Text"; }