C#中如何改变richtextbox中已选择部分的字体和颜色?

如题所述

如果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();
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2018-10-17
//ColorDialog自定义字体
ColorDialog c = new ColorDialog();
c.ShowDialog();
//FontDialog自定义颜色
FontDialog f = new FontDialog();
f.ShowDialog();
//Selection选中的
richTextBox1.SelectionColor = c.Color;// 设置选中的颜色
richTextBox1.SelectionFont = f.Font;// 设置选中的字体
第2个回答  2010-05-13
richtextbox1.selecttext.font=选择的字体
richtextbox1.selecttext.color=选择的颜色
第3个回答  2010-05-12
有属性的,找找看,需要先选定(指定起始结束位置),然后有个属性可以用的
第4个回答  2010-05-12
richtextbox.Font
richtextbox.Color
相似回答