标签: c#
我可以创建并保存包含字符串内容的文件。我想在字符串的下划线或颜色。该字符串在RichTextBox中带有下划线。如何给它加上下划线或颜色?
代码:
sw.WriteLine(txtFehler.Text);
RichTextBox中的字符串使用下划线标记
txtFehler.SelectionFont = new Font(txtFehler.SelectionFont, FontStyle.Underline);
谢谢!