使用RichTextBox Control

时间:2015-09-09 15:36:17

标签: c# .net special-characters richtextbox

我想阅读文本文件并在 RichTextBox控件中显示,并显示所有可能的字符,包括 ESC FF SO SI 空格

我不知道如何做到这一点。

enter image description here

此代码没有帮助...

if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK) {
    string text = File.ReadAllText(openFileDialog1.FileName);
    richTextBox1.Text = text;
}

有任何线索吗?

0 个答案:

没有答案