1

我想获得 svg 元素的标签。我写了一个控制台应用程序和 thougt svg 文件作为 xml。我正在尝试根据元素的 id 获取标签。当我在下面编写代码时,我得到了所有 id,但我无法获得该行的标签。我如何访问标签?元素的一个例子是;

<rect
       style="fill:#cccccc"
       id="21"
       width="35.823246"
       height="35.823246"
       x="299.87155"
       y="65.999405"
       class="seatObj"
       inkscape:label="A22" />

代码是;

class Program
    {
        static void Main(string[] args)
        {
            XmlDocument doc = new XmlDocument();
            doc.Load(@"seatChart-01.svg");
            XmlNodeList elementList = doc.GetElementsByTagName("rect");
            string[] labels = new string[elementList.Count];
            for (int i = 0; i < elementList.Count; i++)
            {   
                int id = int.Parse(elementList[i].Attributes["id"].Value);
                labels[id] = elementList[i].Attributes["inkspace:label"].Value;             
            }
            for (int i = 0; i < labels.Length; i++)
            {
                Console.WriteLine(labels[i]);
            }
            Console.ReadLine();
       }
    }
4

1 回答 1

1
elementList[i].Attributes["inkspace:label"].Value

应该

elementList[i].Attributes["label", "http://www.inkscape.org/namespaces/inkscape"].Value

我假设命名空间是这里的 inkscape 绘图程序的命名空间。为了确认在根元素上寻找看起来像这样的东西......

xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
于 2013-10-23T13:02:03.980 回答