我正在使用RichTextBox
并TextBox
显示几天收集的一些信息。所以几天后里面有很多字符串,我得到了OutOfMemory
例外。我认为由于大量数据而发生此错误。是否有一些属性或函数可以限制 和 中的字符串RichTextBox
数量TextBox
?我只需要截断列表开头的旧字符串。例如,看看下面的图片:
有任何想法吗?
我创建了简单的代码来解决这个问题。对于TextBox
:
if (limitLines>0 && simpleTextBox.LineCount > limitLines)
{
string tempText = "";
for (int i = simpleTextBox.LineCount-limitLines; i < simpleTextBox.LineCount; i++)
{
tempText += simpleTextBox.GetLineText(i);
}
simpleTextBox.Clear();
simpleTextBox.Text = tempText;
}
simpleTextBox.AppendText(data);
对于RichTextBox
:
TextRange tr = new TextRange(richTextBox.Document.ContentEnd, richTextBox.Document.ContentEnd);
tr.Text = text + "\r\n";
tr.ApplyPropertyValue(TextElement.ForegroundProperty, solidColorBrush);
if (limitLines > 0 && richTextBox.Document.Blocks.Count > limitLines)
{
for (int i = richTextBox.Document.Blocks.Count - limitLines; i < richTextBox.Document.Blocks.Count; i++)
richTextBox.Document.Blocks.Remove(richTextBox.Document.Blocks.FirstBlock);
}
我希望它对其他人有帮助!