如何将 xml 文件读入 richtextbox?

how to read xml file into richtextbox?

我的文本格式为 xml,我希望 richTextBox 能够像浏览器一样显示它 - 没有任何标记。

我已经尝试创建新的 XDocument...、XmlRead、XmlReadMode,但似乎没有任何效果。

假设我的文字是这样的:

<heading>


    <line> line the first </line> 
       <line> line the second </line>

</heading>

我希望我的 richtextbox 显示如下:

line the firs line the second 

我正在使用 System.Xml 和 System.Linq,我应该 add/try 什么?

哦,伙计,就这么简单:

var xml = XElement.Load("test.xml");
richTextBox.Text = xml.Value;

你试过了吗?