| TaskDialogEnableHyperlinks Property |
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; }
Public Property EnableHyperlinks As Boolean
Get
Set
public:
property bool EnableHyperlinks {
bool get ();
void set (bool value);
}
member EnableHyperlinks : bool with 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 |
---|
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