New to Telerik UI for WPFStart a free 30-day trial

Represents a control that displays a hyperlink and content.

Definition

Namespace:Telerik.Windows.Controls.GridView

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class HyperlinkButton : TextBlock

Inheritance: objectHyperlinkButton

Fields

ContentProperty

DependencyProperty

Identify the Content dependency property.

C#
public static readonly DependencyProperty ContentProperty

NavigateUriProperty

DependencyProperty

Identifies the NavigateUri dependency property.

C#
public static readonly DependencyProperty NavigateUriProperty

TargetNameProperty

DependencyProperty

Identifies the TargetName dependency property.

C#
public static readonly DependencyProperty TargetNameProperty

Properties

Gets or sets the Content for the Hyperlink.

C#
public object Content { get; set; }

Gets or sets a URI to navigate to when the HyperlinkButton is activated. This is a dependency property.

C#
public Uri NavigateUri { get; set; }

Gets or sets the name of a target window or frame for the System.Windows.Documents.Hyperlink. This is a dependency property.

C#
public string TargetName { get; set; }