Я отредактировал код, и он полностью функционален. Используя это, вы также можете легко выполнить много других операций форматирования. Ниже я также добавил ссылку, откуда я это получил.
private void button1_Click(object sender, EventArgs e)
{
if (_richTextBox1.SelectionLength > 0)
{
if (_richTextBox1.SelectionFont.Bold == false)
{
ChangeOrSetFont(_richTextBox1.SelectionFont.ToString(), _richTextBox1.SelectionFont.Size, FontStyle.Bold, true);
}
else
{
ChangeOrSetFont(_richTextBox1.SelectionFont.ToString(), _richTextBox1.SelectionFont.Size, FontStyle.Regular, true);
}
}
}
bool _maskChanges;
private void ChangeFontStyleForSelectedText(string familyName, float? emSize, FontStyle? fontStyle, bool? enableFontStyle)
{
_maskChanges = true;
try
{
int txtStartPosition = _richTextBox1.SelectionStart;
int selectionLength = _richTextBox1.SelectionLength;
if (selectionLength > 0)
using (RichTextBox txtTemp = new RichTextBox())
{
txtTemp.Rtf = _richTextBox1.SelectedRtf;
for (int i = 0; i < selectionLength; ++i)
{
txtTemp.Select(i, 1);
txtTemp.SelectionFont = RenderFont(txtTemp.SelectionFont, familyName, emSize, fontStyle, enableFontStyle);
}
txtTemp.Select(0, selectionLength);
_richTextBox1.SelectedRtf = txtTemp.SelectedRtf;
_richTextBox1.Select(txtStartPosition, selectionLength);
}
}
finally
{
_maskChanges = false;
}
}
private Font RenderFont(Font originalFont, string familyName, float? emSize, FontStyle? fontStyle, bool? enableFontStyle)
{
if (fontStyle.HasValue && fontStyle != FontStyle.Regular && fontStyle != FontStyle.Bold && fontStyle != FontStyle.Italic && fontStyle != FontStyle.Underline)
throw new System.InvalidProgramException("Invalid style parameter to ChangeFontStyleForSelectedText");
Font newFont;
FontStyle? newStyle = null;
if (fontStyle.HasValue)
{
if (fontStyle.HasValue && fontStyle == FontStyle.Regular)
newStyle = fontStyle.Value;
else if (originalFont != null && enableFontStyle.HasValue && enableFontStyle.Value)
newStyle = originalFont.Style | fontStyle.Value;
else
newStyle = originalFont.Style & ~fontStyle.Value;
}
newFont = new Font(!string.IsNullOrEmpty(familyName) ? familyName : originalFont.FontFamily.Name,
emSize.HasValue ? emSize.Value : originalFont.Size,
newStyle.HasValue ? newStyle.Value : originalFont.Style);
return newFont;
}
private void ChangeOrSetFont(string familyName, float? emSize, FontStyle? fontStyle, bool? enableFontStyle)
{
if (_richTextBox1.SelectionType == RichTextBoxSelectionTypes.Empty)
{
SetSelectionFont(familyName, emSize, fontStyle, enableFontStyle);
}
else
{
ChangeFontStyleForSelectedText(familyName, emSize, fontStyle, enableFontStyle);
}
}
private void SetSelectionFont(string familyName, float? emSize, FontStyle? fontStyle, bool? enableFontStyle)
{
Font renderedFont = RenderFont(_richTextBox1.SelectionFont, familyName, emSize, fontStyle, enableFontStyle);
_richTextBox1.SelectionFont = renderedFont;
}
Вот ссылка:
http://how-to-code-net.blogspot.com/2014/01/how-to-make-custom-richtextbox-control.html