如何将列表框中的数据及其文本框中的相应值保存到 xml 中

发布于 2024-12-04 14:55:20 字数 177 浏览 0 评论 0原文

我的列表框中有一些项目,当我单击特定项目时,我需要在文本框中输入相应的值,并且这些值必须保存在 xml 中。例如。我的列表框包含姓名和年龄。我单击名称,在文本框中输入相应的值(例如 John),我需要将其保存到 xml 中。必须对列表框中的所有项目执行此操作。我是一个初学者,不太确定如何去做。我希望我的问题是可以理解的。我该怎么办?谢谢!

I have some items in a listbox, and when i click on the particular item, i need to enter the corresponding value in a text box, and these have to be saved in an xml. For example. my listbox contains name and age. I click on name, enter the corresponding value(say John) in the text box and i need to save this to an xml. This has to be done for all the items in the listbox. I am a beginner and not too sure how to go about it. I hope my question is comprehensbile. How can i go about this? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夢归不見 2024-12-11 14:55:20

尝试

        {

           xmlDoc = XDocument.Load(TextBox1.Text);

        }

        catch (Exception ex)

        {

            Debug.WriteLine("  " + ex.ToString());

        }


        if (null == xmlDoc)
        {
            // Load from Isolated Storage failed so load from default settings in XAP file
            xmlDoc = XDocument.Load("Default.xml", LoadOptions.None);
        }
        xmlDoc.Element("").Add(new XElement("username"));
        xmlDoc.Save(strmSettings);

        strmSettings.Close();

try

        {

           xmlDoc = XDocument.Load(TextBox1.Text);

        }

        catch (Exception ex)

        {

            Debug.WriteLine("  " + ex.ToString());

        }


        if (null == xmlDoc)
        {
            // Load from Isolated Storage failed so load from default settings in XAP file
            xmlDoc = XDocument.Load("Default.xml", LoadOptions.None);
        }
        xmlDoc.Element("").Add(new XElement("username"));
        xmlDoc.Save(strmSettings);

        strmSettings.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文