RichTextBox 链接不执行任何操作

发布于 2024-08-06 13:39:01 字数 262 浏览 3 评论 0原文

我的表单上有一个 RichTextBox 控件,其中包含一些文本,其中一些是 URL。 DetectUrls 属性设置为 true。该控件正确检测我的 URL(它们是蓝色的,带下划线,当我悬停它们时,光标会变成手形)。但是,当我单击它们时,没有任何反应(双击和 ctrl+单击同样无效)。我已将 ReadOnly 属性设置为 true,不确定这是否重要。我错过了一些明显的东西吗?

I have a RichTextBox control on a form with some text, some of which are URLs. The DetectUrls property is set to true. The control properly detects my URLs (they're blue, underlined and the cursor changes to a hand when I hover them). However, when I click on them nothing happens (double-click and ctrl+click are similarly ineffective). I've set the ReadOnly property to true, not sure if that matters. Am I missing something obvious?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新雨望断虹 2024-08-13 13:39:01

有一个您连接的事件,当单击链接时会触发该事件。

连接到那个

public event LinkClickedEventHandler LinkClicked;

OnLinkClicked

there is an event you hook up to that is fired when links are clicked on.

Hook up to that

public event LinkClickedEventHandler LinkClicked;

OnLinkClicked
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文