Show / Hide Table of Contents

Event dialog.HyperlinkClicked

When the user clicks a hyperlink in the dialog text.

public event Action<DEventArgs> HyperlinkClicked

Examples

var d = new dialog("test", "Text with <a href=\"link data\">links</a>.");
d.HyperlinkClicked += e => { print.it(e.LinkHref); };
d.ShowDialog();