我有一个richtextbox,我正在阅读一个文本文件,使用点按钮点击按钮 我已经格式化文本文件的方式我希望它使用段落在文本文件中显示但是当我将文本添加到richtextbox时格式化消失。 有没有什么办法可以在从文本文件中读入文本框时将文本格式化为单独的段落?
这是我的代码:
using (StreamReader reader = new StreamReader(@"F:\test.txt"))
{
bool content = false;
while ((line = reader.ReadLine()) != null)
{
if (line.Contains("[7]"))
{
content = true;
continue;
}
if (content == true)
{
txtContent.AppendText(line.Replace("[7]", "").Replace("[/7]", ""));
}
if (line.Contains("[/7]"))
{
content = false;
break;
}
}
}
[7]和[/ 7]引用我添加到文本文件中的标记,以便读者只读入这些标记并仅在中间显示所选文本
感谢您的帮助
答案 0 :(得分:0)
StreamReader.ReadLine()
返回的字符串不包含终止回车符或换行符。因此,您需要在每行末尾手动将其附加到RichTextBox
:
txtContent.AppendText(line.Replace("[7]", "").Replace("[/7]", ""));
txtContent.AppendText(Environment.NewLine);