C#窗体的 richTextBox控件怎样实多颜色显示文字

2024-12-27 21:44:06
推荐回答(2个)
回答1:

不用算位置的。。。

//蓝色按钮,在框内选好文字后,按此按钮将选择的文字设定为蓝色
private void button1_Click(object sender, EventArgs e)
{
richTextBox1.SelectionColor = Color.FromArgb(0, 0, 255);
}
//粉红按钮,在框内选好文字后,按此按钮将选择的文字设定为粉红
private void button2_Click(object sender, EventArgs e)
{
richTextBox1.SelectionColor = Color.FromArgb(255, 0, 255);
}

回答2:

RichTextBox txt_Mes = new RichTextBox();
……
txt_Mes.Select(0, 3);//Select(位置,长度)方法
txt_Mes.SelectionColor = Color.Blue;//将选中的文本设blue。
txt_Mes.Select(3, 3);
txt_Mes.SelectionColor = Color.Red;

可明白?