RichTextBox控件中如何出现不同颜色文字

能否给个实例,让该控件中的文字呈现不同的颜色RichTextBox1.SelColor=vbRed'可以了,再加个RichTextBox1.SelText... 能否给个实例,让该控件中的文字呈现不同的颜色
RichTextBox1.SelColor = vbRed'
可以了 ,再加个RichTextBox1.SelText
展开
 我来答
mathboy1_1
2008-08-30
知道答主
回答量:31
采纳率:0%
帮助的人:6.8万
展开全部
protected override void OnTextChanged(EventArgs e)
{
if (boolLinkStyle)
{
int intCharIndex;
int intLine;
int intCurIdx;
string strLine;
char ch;
Font newFont;
Font oldFont;
Color oldColor;

oldFont = this.Font;
newFont = new Font(oldFont, FontStyle.Underline);
oldColor = this.ForeColor;
intCurIdx = this.SelectionStart;
this.SelectAll();
this.SelectionFont = oldFont;
this.SelectionColor = oldColor;

for (int i = 0; i < this.TextLength; i++)
{
ch = Convert.ToChar(this.Text.Substring(i, 1));
intCharIndex = i;
if (ch != '【' && ch != '】')
{
intLine = this.GetLineFromCharIndex(intCharIndex);
strLine = this.Text;
if ((strLine.Substring(0, intCharIndex).LastIndexOf("【") >= 0 && strLine.IndexOf("】", intCharIndex) >= 0) &&
((strLine.Substring(0, intCharIndex).LastIndexOf("【") >= 0 && strLine.IndexOf("【", intCharIndex) < 0) ||
(strLine.IndexOf("【", intCharIndex) > strLine.IndexOf("】", intCharIndex)) &&
(strLine.IndexOf("【", intCharIndex) >= 0 && (strLine.IndexOf("【", intCharIndex) > strLine.IndexOf("】", intCharIndex)))))
{
this.Select(intCharIndex, 1);
this.SelectionColor = Color.Blue;
this.SelectionFont = newFont;
}
}
}
this.Select(intCurIdx, 0);
}
base.OnTextChanged(e);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
43295811
2008-08-30 · TA获得超过1529个赞
知道大有可为答主
回答量:1701
采纳率:0%
帮助的人:2043万
展开全部
RichTextBox1.SelColor = vbRed'设置选定的文本颜色为red
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式