我想在富文本框中创建粗体特定行或字符串。
例如:
string str = "Hello World";
string str1="Hello Everyone";
richtextbox1.text = str+str1 ;
这里我想要大胆情况下的“Hello world”,而普通情况下需要“Hello Everyone”。
有很多代码可以使整个文本框变粗。
richtextbox1.Rtf
没有为每个循环工作,因为它没有提供粗体文本。
答案 0 :(得分:1)
Formatting Characters in Bold in a RichTextBox Control (Visual C#)
您可以使用Rtf
属性
richTextBox1.Rtf = @"{\rtf1\ansi \b" + str + "\b0" + str1 + "}";