如何使用C#从Windows窗体中的树文本生成XSD文件

时间:2013-02-13 07:52:32

标签: xml winforms xsd treeview

我需要从树视图生成XSD文件。意味着,树节点文本应该是XSD文件的元素。 例如。想象一下,我有以下树。

    Heading
       Section
           Paragraph
               Sentance
单击按钮上的

应该是

<xs:element name="Chapter" type="xs:string">
    <xs:element name="Heading" type="xs:string">
      <xs:element name="Session" type="xs:string">
        <xs:element name="Para" type="xs:string">         
        </xs:element>      
      </xs:element>    
    </xs:element>  
  </xs:element>

我有以下代码,但它只返回第一行。有人可以帮忙吗?

int i = 0;         string XSD = string.Empty;

    private void button1_Click(object sender, EventArgs e)
    {
       XSD=XSDString(XSD,tvMain.Nodes[0]);
       textBox1.Text = XSD.ToString(); 
    }

    private string XSDString(string XSD, TreeNode tnode)
    {
        for (i = 0; i < tnode.Nodes.Count; i++)
        {
            XSD = XSD + "<xs:element name=" + tnode.Nodes[i].Text + " "+ "type=" + "xs:string" + ">";
            XSDString(XSD, tnode.Nodes[i]);
            XSD = XSD + "</xs:element>";
        }
        return XSD;
    }

1 个答案:

答案 0 :(得分:1)

我得到了答案..我只需要XSD来保持价值..

XSD = XSDString(XSD,tnode.Nodes [i]);