How to include hyperlinks in the TaskDialog? #75
-
The screenshot in the readme shows that I can use a hyperlinks. But how? Do I need to use some syntax? readme.md seems to have not much info about this class library, just the description. Is there any documentation for this library anywhere? The documentation here is not accessible |
Beta Was this translation helpful? Give feedback.
Answered by
augustoproiete
May 30, 2022
Replies: 1 comment
-
Hi @TuTAH1, hyperlinks use the HTML syntax taskDialog.EnableHyperlinks = true;
taskDialog.Footer = "Task Dialogs support <a href=\"https://augustoproiete.net\">hyperlinks</a>."; You can see examples in the source-code: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
augustoproiete
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @TuTAH1, hyperlinks use the HTML syntax
<a href="..."></a>
You can see examples in the source-code:
https://github.com/ookii-dialogs/ookii-dialogs-winforms/blob/v4.0.0/sample/shared/MainForm.Designer.cs#L58-L61