我正在尝试读取文件并将richTextBox 的文本设置为等于它,但是在我这样做之后格式正在消失。文本文件本身中的“ENTER”在richTextBox 中不可见。这是我正在使用的代码:
try
{
using (StreamReader sr = new StreamReader(directory + filePath))
{
while (!sr.EndOfStream)
{
initialText += sr.ReadLine();
}
}
}
任何帮助将不胜感激。