是否可以使用 http-reference 制作格式化的 MessageBox

发布于 2024-10-12 15:07:13 字数 145 浏览 6 评论 0原文

我想显示诸如“新版本的软件可在 http://mysite.com”等“http: //mysite.com”部分将是可点击的。是否可以使用一些内置的 Winforms 消息对话框?

I want to show message like "New version of software is available at http://mysite.com" and so "http://mysite.com" part would be clickable. Is it posible using some built in Winforms message dialog ?

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

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

发布评论

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

评论(1

瑶笙 2024-10-19 15:07:13

不,你不能。

您将需要创建自己的对话框。

CodeProject 上的示例:自定义消息框

编辑:

显然有一种方法:
Winform 消息框中可点击的 URL?

MessageBox.Show(     
    "test message",
    "caption",
    MessageBoxButtons.YesNo,     
    MessageBoxIcon.Information,
    MessageBoxDefaultButton.Button1,
    MessageBoxOptions.LeftAlign,
    "http://google.com",
    "keyword"
) 

No. You can't.

You will need to create your own Dialog box.

An example on CodeProject: a custom messagebox

EDIT:

Apparently there is a way:
Clickable URL in a Winform Message Box?

MessageBox.Show(     
    "test message",
    "caption",
    MessageBoxButtons.YesNo,     
    MessageBoxIcon.Information,
    MessageBoxDefaultButton.Button1,
    MessageBoxOptions.LeftAlign,
    "http://google.com",
    "keyword"
) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文