Skip to main content
A newer version of this page is available. .
All docs
V20.2

LayoutControl.HyperlinkClick Event

Occurs each time a user clicks hyperlinks within captions of layout items and layout groups.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v20.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Action")]
public event EventHandler<LayoutItemHyperlinkClickEventArgs> HyperlinkClick

Event Data

The HyperlinkClick event's data class is DevExpress.XtraLayout.LayoutItemHyperlinkClickEventArgs.

Remarks

If you add a hyperlink to the text of a layout item or layout group, you can then handle the HyperlinkClick event to perform actions when a user clicks this hyperlink.

LayoutControl Hyperlink

You can add a hyperlink to a layout item’s caption as follows:

To add a hyperlink to a layout group’s caption, do the following:

Example

The following example adds a hyperlink to a layout item’s caption and launches this link when a user clicks it.

LayoutControl Hyperlink

layoutControlItem1.AllowHtmlStringInCaption = true;
layoutControlItem1.Text = "Leave feedback <href=www.devexpress.com>(learn more)</href>";
//...
private void layoutControl1_HyperlinkClick(object sender, DevExpress.XtraLayout.LayoutItemHyperlinkClickEventArgs e) {
    System.Diagnostics.Process.Start(e.Link);
}
See Also