Click or drag to resize

TaskDialogEnableHyperlinks Property

Gets or sets a value that indicates whether hyperlinks are allowed for the Content, ExpandedInformation and Footer properties.

Namespace:  Ookii.Dialogs.Wpf
Assembly:  Ookii.Dialogs.Wpf (in Ookii.Dialogs.Wpf.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public bool EnableHyperlinks { get; set; }

Property Value

Type: Boolean
when hyperlinks are allowed for the Content, ExpandedInformation and Footer properties; otherwise, . The default value is .
Remarks

When this property is , the Content, ExpandedInformation and Footer properties can use hyperlinks in the following form: <A HREF="executablestring">Hyperlink Text</A>

Note Note
Enabling hyperlinks when using content from an unsafe source may cause security vulnerabilities.

Task dialogs will not actually execute hyperlinks. To take action when the user presses a hyperlink, handle the HyperlinkClicked event.

See Also