RichTextBox 和下划线颜色
有什么方法可以更改 RichTextBox 中下划线的颜色吗? 我试过 这个,但它似乎不起作用。 有人知道这些枚举值来自哪里吗? 没有看到任何相关文档。
谢谢。
Is there any way to change the color of an underline in a RichTextBox
?
I've tried this but it doesn't seem to work. Anybody know where did those enum values came from? Didn't see any documentation for it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
枚举值是向控件传递消息时的标准窗口值。 本文没有提到的一件事是,您需要在
RichTextBox
中选择一个文本才能对其应用格式,所以也许这就是缺少的内容。The enum values are the standard windows values when passing messages to controls. One thing that the article doesn't mention, is that you need to have a selected text in the
RichTextBox
in order to apply formatting to it, so maybe that's what is missing.