XDocument xml已解析,但无法保存属性。 Xml.Linq

问题描述 投票:0回答:1

我像这样遍历控件并设置xml中的文本框值:

using System.Xml.Linq;

/* code */

XDocument _xml = XDocument.Load(_DialogOpen);

foreach (Control t in tableLayoutPanel.Controls)
{
    if (t is TextBox)
    {
        //setting the value
        _xml.Root.SetAttributeValue("isPreview", t.Text);
        //log
        textBox.AppendText("n=" + t.Name + " t=" + t.Text + Environment.NewLine);           
    }
}

_xml.Save(_DialogOpen);

我的问题是_xml.Save(_DialogOpen);确实保存了,但是没有任何属性被更改,也没有例外。如果有人有任何建议,将不胜感激。

xml示例:

<?xml version="1.0" encoding="utf-8"?>
<config id="1">
  <parmVer __id="0" version="V1234" />
    <RecordSetChNo __id="0" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="1" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="2" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="3" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="4" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="5" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="6" isPreview="1" AIVolume="15" />
    <RecordSetChNo __id="7" isPreview="1" AIVolume="15" />
</config>
c# xml linq xml-parsing
1个回答
0
投票

从OP看以下行

_xml.Root.SetAttributeValue("isPreview", t.Text);

上面的代码试图在Root元素中设置属性,就像您想为元素RecordSetChNo设置属性一样。

[另外,请相信您要基于每个文本框设置属性,即每个文本框在xml中都有一个对应的属性。在这种情况下,您需要在设置属性之前过滤正确的XElement(因为有多个RecordSetChNo)。

    foreach (Control t in tableLayoutPanel.Controls)
    {
        if (t is TextBox)
        {
            //filter the xelement, only a sample here. 
            // Should change according to your requirement
            var filteredXElement = _xml.Root
                                      .Descendants("RecordSetChNo")
                                      .First(x=>x.Attribute("__id").Value==idToFilter);
            // Now set the attribute for the filtered Element
            filteredXElement.SetAttributeValue("isPreview", t.Text);
            //log
            textBox.AppendText("n=" + t.Name + " t=" + t.Text + Environment.NewLine);           
        }
    }
© www.soinside.com 2019 - 2024. All rights reserved.