C#如何改变textbox中一部分字体颜色?

用richtextbox,我想实现得是,当给其赋值时,如果赋的值里包含某个字符标示,比如A,就把A变红,其余不变,如何实现.

如果richtextbox1.selecttext.font!=null 可以直接通过richtextbox1.selecttext.font=选择的字体
richtextbox1.selecttext.color=选择的颜色 赋值。
如果richtextbox1.selecttext.font=null(当选择的内容的字体不一致时)
就不能用直接赋值的方法了,以下是我使用的方法,分享出来供你参考。
主要是通过传参数的方法来设置文字的字体和颜色。
参考以下的方法相信你可以搞定。
/// <summary>
/// 字体名称
/// </summary>
internal void SetFontName(string fontName)
{
RichTextBox tempRichTextBox = new RichTextBox(); //将要存放被选中文本的副本

int curRtbStart = m_TextBox.SelectionStart;
int len = m_TextBox.SelectionLength;
int tempRtbStart = 0;

Font font = m_TextBox.SelectionFont;
if (len <= 1 && font != null)
{
m_TextBox.SelectionFont = new Font(fontName, font.Size, font.Style);
return;
}

tempRichTextBox.Rtf = m_TextBox.SelectedRtf;

for (int i = 0; i < len; i++)
{
tempRichTextBox.Select(tempRtbStart + i, 1); //每次选中一个,逐个设置字体大小
tempRichTextBox.SelectionFont =
new Font(fontName, tempRichTextBox.SelectionFont.Size,
tempRichTextBox.SelectionFont.Style);
}

tempRichTextBox.Select(tempRtbStart, len);
m_TextBox.SelectedRtf = tempRichTextBox.SelectedRtf; //将设置字体大小后的副本拷贝给原型
m_TextBox.Select(curRtbStart, len);
// 激活文本框
m_TextBox.Select();
}追问

你这是设置选中得字体得颜色.比如给richtextbox赋值"abcd",直接使a变红.bcd不变,如何实现

追答

那你直接写个变量就行,写死了。

温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2017-10-09
要先将其选中richTextBox1.SelectedText = "The following is a list of bulleted items:" + "\n";
总之就是要先选中你要改变的字符串
然后在更改字体个颜色。
第2个回答  2011-12-06
没办法,除非重写他,建议用richtextbox
相似回答