次の形式のXMLがあり、手動またはスクリプトでテキストボックスに入力します。
<instructions>
<step index="1">Do this</step>
<step index="2">Do that</step>
</instructions>
ボタンをクリックしてinstructions要素に属性を追加して、すべてのXMLがそのまま残るようにしたいのですが、テキストボックスに表示されるXMLは次のようになります。
<instructions iterations="3">
<step index="1">Do this</step>
<step index="2">Do that</step>
</instructions>
XMLをXmlDocumentに取り込むことができましたが、要素を追加して結果をテキストボックスに戻すのに問題があります。
どんな助けでもいただければ幸いです!
フィードバックに基づいてこれまでに作成したコードは次のとおりです。
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(textBoxInstructions.Text);
var attr = xmlDoc.CreateAttribute("iterations");
attr.InnerText = "3";
string strNewXML = xmlDoc.InnerXml;
textBoxInstructions.Text = strNewXML;
ただし、古いものは新しいものと同じです。