如何在 C# 中将富文本框中的某些文本设置为粗体
我想创建一个文本编辑器,可以使文本加粗,更改其颜色等。
我发现这段代码大致有效:
public static void BoldSelectedText(RichTextBox control)
{
control.SelectionFont = new Font(control.Font.FontFamily, control.Font.Size, FontStyle.Bold);
}
但是当我在 RichTextBox
中输入更多字母时,文本仍然是粗体。
除非我选择文本并点击“加粗”按钮,否则如何才能使只有选定的文本变为粗体而接下来的字符不是粗体?
I want to create a text editor where I can make text bold, change its color, etc.
I found this code to approximately work:
public static void BoldSelectedText(RichTextBox control)
{
control.SelectionFont = new Font(control.Font.FontFamily, control.Font.Size, FontStyle.Bold);
}
But when I type in more letters in the RichTextBox
the text is still bold.
How can I make it so that only the selected text is bold and the next characters aren't unless I select the text and hit the "Make Bold" button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选择后应将字体设置为原始字体。
如果您愿意,可以保存
SelectionStart
和SelectionLength
并调用Select
方法再次选择文本。这样文本就保持选中状态,之后的字体仍然是正确的。
You should set the font after the selection to the original font.
If you want you can save the
SelectionStart
andSelectionLength
and call theSelect
method to select the text again.this way the text stays selected, and the font afterwards is still correct.