我想获得svg元素的标签。我写了一个控制台应用程序,并将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();
}
}
答案 0 :(得分: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"