C# - 解析 XSD 架构 - 将所有元素获取到组合框 [英] C# - Parsing XSD schema - get all elements to combobox

查看:8
本文介绍了C# - 解析 XSD 架构 - 将所有元素获取到组合框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有 XSD 架构文件,我需要用架构文件中的元素填充我的组合框...

I have XSD Schema file and i need to fill my combobox with the elements from the schema file...

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:element name="auto">
      <xs:complexType>
         <xs:sequence>
            <!-- Znacka -->
            <xs:element name="znacka" type="xs:string"/>
            <!-- pocetOsob -->
            <xs:element name="pocetOsob" type="xs:int"/>
            <!-- maxRychlost -->
            <xs:element name="maxRychlost">
               <xs:complexType>
                  <xs:simpleContent>
                     <xs:extension base="xs:decimal">
                        <xs:attribute name="jednotka" type="xs:string"/>
                     </xs:extension>
                  </xs:simpleContent>
               </xs:complexType>
            </xs:element>
            <!-- Motor -->
            <xs:element name="motor">
               <xs:complexType>
                  <xs:sequence>
                     <xs:element name="vykon">
                        <xs:complexType>
                           <xs:simpleContent>
                              <xs:extension base="xs:decimal">
                                 <xs:attribute name="jednotka" type="xs:string"/>
                              </xs:extension>
                           </xs:simpleContent>
                        </xs:complexType>
                     </xs:element>
                  </xs:sequence>
                  <xs:attribute name="vyrobni_cislo" type="xs:string"/>
               </xs:complexType>
            </xs:element>
         </xs:sequence>
      </xs:complexType>
   </xs:element>
</xs:schema> 

有人知道怎么做吗?通过xpath?我有一半工作的代码...我收到一条带有元素 auto 的消息.

Anyone had idea how to do it? Through xpath? I have a half working code... I got a message with element auto.

String path = openSchema.FileName;
XmlTextReader xsd_file = new XmlTextReader(path);
XmlSchema schema = new XmlSchema();
schema = XmlSchema.Read(xsd_file, null);

MessageBox.Show(schema.Items.Count.ToString());

foreach (XmlSchemaElement element in schema.Items)
{
    elements.Items.Add(element.Name);
    MessageBox.Show(element.Name);
}

非常感谢!

推荐答案

string xml = <your xml>;
var xs = XNamespace.Get("http://www.w3.org/2001/XMLSchema");
var doc = XDocument.Parse(xml);
// if you have a file: var doc = XDocument.Load(<path to xml file>)
foreach(var element in doc.Descendants(xs + "element"))
{
    Console.WriteLine(element.Attribute("name").Value);
}
// outputs: 
// auto
// znacka
// pocetOsob
// maxRychlost
// motor
// vykon

这篇关于C# - 解析 XSD 架构 - 将所有元素获取到组合框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆