Skip to main content
A newer version of this page is available. .

WizardControl.HyperlinkClick Event

Fires when a user clicks a hyperlink on a wizard page.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v20.1.dll

NuGet Package: DevExpress.Win

Declaration

public event WizardHyperlinkClickEventHandler HyperlinkClick

Event Data

The HyperlinkClick event's data class is DevExpress.Utils.HyperlinkClickEventArgs.

Remarks

If the AllowHtmlText property is set to true, you can use HTML tags to format the text displayed on wizard pages. For example, you can specify the font, its size, attributes (bold, italic, underlined), etc. You can also display a hyperlink in the text. To respond to a click on the hyperlink, handle the HyperlinkClick event.

Example

The code below shows how to display a hyperlink in the text at the bottom of a completion page.

wizardControl1.AllowHtmlText = true;
completionWizardPage1.ProceedText = "Thank you for your interest in <href=www.devexpress.com>DevExpress</href> XtraWizard Suite.";
wizardControl1.HyperlinkClick += (s, e) => { 
    System.Diagnostics.Process.Start(e.Link); 
};
See Also