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 ?
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"
)
精彩评论