富编辑控件:隐藏 RTF URL 中的尖括号链接
我想显示一个 RTF 文件,其中包含一些链接;链接具有 RTF 编码:
{\field{\*\fldinst{HYPERLINK "http://a-link.com" }}{\fldrslt{\cf1\ul here is a link}}}
在写字板和 Word 中,这显示为“这是一个链接”,带下划线,如预期的那样。
当我将 RTF 加载到丰富的编辑控件 (RichEdit20A) 中时,它显示:
here is a link <http://a-link.com>
有什么方法可以让丰富的编辑控件停止在友好名称后显示尖括号 URL?
谢谢!
I want to display an RTF file with some links in it; the links have the RTF encoding:
{\field{\*\fldinst{HYPERLINK "http://a-link.com" }}{\fldrslt{\cf1\ul here is a link}}}
In WordPad and Word, this displays as "here is a link", underlined, as expected.
When I load the RTF into a rich edit control (RichEdit20A), it displays:
here is a link <http://a-link.com>
Is there any way to get the rich edit control to stop displaying the angle-bracketed URL after the friendly name?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 RichTextBox v5。 Visual Studio 中的默认版本是 v4。它解决了这个问题等。
Use RichTextBox v5. The default in Visual Studio is v4. It fixes this problem among others.