Richtextbox为新文本添加颜色
本文关键字:添加 颜色 文本 新文本 Richtextbox | 更新日期: 2023-09-27 17:53:11
我在WinForms中使用了一个richtextbox来显示日志。
使用的语言是c#。
该软件用于插入银行分行的数据,在新分行启动后,我想显示一个新的颜色的文本。
我已经看到了链接颜色的RichTextBox字符串的不同部分,并成功地实现了它。
我的问题是我想在新行前加上前缀而不是追加。这是新的一行将显示在顶部。
我可以通过将代码更改为box.Text=DateTime.Now.ToString("dd-MM-yyyy-hh-mm-ss") + ": " + text + box.Text
但是整个文本的颜色都在变化
这是用于追加
的过程 box.SelectionStart = box.TextLength;
box.SelectionLength = 0;
box.SelectionColor = color;
box.AppendText(DateTime.Now.ToString("dd-MM-yyyy-hh-mm-ss") + ": " + text);
box.SelectionColor = box.ForeColor;
这是我所做的:
box.Text=DateTime.Now.ToString("dd-MM-yyyy-hh-mm-ss") + ": " + text + box.text;
box.SelectionStart = 0;
box.SelectionLength = text.length;
box.SelectionColor = color;
1) 不要直接改变已经格式化的RichtTextBox
的Text
属性
2)对追加使用RTB.AppendText
函数
p
,包括开始使用:
rtb.SelectionStart = s; // set the cursor to the target position
rtb.Selection.Length = 0; // nothing selected, yet
rtb.SelectedText = yourNewText; // this inserts the new text
现在你可以添加你想要的格式:
rtb.SelectionStart = s; // now we prepare the new formatting..
rtb.SelectionLength = yourNewText.Length; //.. by selecting the text
rtb.SelectionColor = Color.Blue; // and/or whatever you want to do..
...
// Prepend, normal on first line, rest of lines gray italic
private void PrependToRichTextbox(RichTextBox rt, string msg)
{
rt.SelectionStart = 0;
rt.SelectionLength = 0;
rt.SelectedText = msg + Environment.NewLine;
int linecount = 0;
foreach (var line in rt.Lines)
{
rt.Select(rt.GetFirstCharIndexFromLine(linecount), line.Length);
rt.SelectionColor = linecount == 0 ? Color.Black : Color.Gray;
Font currentFont = rt.SelectionFont;
FontStyle newFontStyle;
newFontStyle = linecount == 0 ? FontStyle.Regular : FontStyle.Italic;
rt.SelectionFont = new Font(
currentFont.FontFamily,
currentFont.Size,
newFontStyle
);
linecount++;
}
}