Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在文本框中显示 xml 文件的全部内容,以便用户可以看到并更改它,然后我必须更新 xml 文件。用户知道 xml 及其工作原理,我只需要显示全部内容页面上的文本框中的 xml 文件,单击按钮后,更新文件,任何人都可以帮助我,在此先感谢。
装载:
TextBox1.Text = File.ReadAllText(filePath);
保存:
File.WriteAllText(filePath, TextBox1.Text);