Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能得到用户标记的文本,这样我就可以只加粗标记的文本而不是加粗整个文本框文本?我不知道如何制定我的陈述..
您将使用 RichTextBox 控件。您需要突出显示该单词并使其粗体。
如何在富文本框中使某些文本变为粗体 C#
String data=TextBox1.SelectedText;
对于格式化文本,例如将选定文本设置为粗体或特定字体,您应该使用 RichTextBoxControl。
例子:
richTextBox1.SelectionFont = new Font("Arial", 10, FontStyle.Bold);