RichTextBox 为所选行设置颜色
我是 Windows 窗体新手。 我正在使用 VS 2008,C# 编写一个 RichTextBox。 我希望在写入 RichTextBox 时能够使用不同的颜色为每行着色。 有人可以给我指点样品吗? 谢谢
foreach (string file in myfiles)
{
// As I process my files
// richTextBox1.Text += "My processing results";
if(file == "somefileName")
{
// Color above entered line or enter new colored line
}
}
I am new to windows Forms. I am using VS 2008, C# to write a RichTextBox.
I want to be able to color each line with a different color as I write to the RichTextBox. Can someone point me to samples.
Thanks
foreach (string file in myfiles)
{
// As I process my files
// richTextBox1.Text += "My processing results";
if(file == "somefileName")
{
// Color above entered line or enter new colored line
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在追加之前设置
SelectionColor
,例如:Set
SelectionColor
before you append, something like: