Hyperlink.NavigateUri Property
Gets or sets a URI to navigate to when the Hyperlink is activated.
Namespace: System.Windows.Documents
Assembly: System.Windows (in System.Windows.dll)
<Hyperlink NavigateUri="uriString"/>
Property Value
Type: System.UriThe URI to navigate to when the Hyperlink is activated. The default is null.
Dependency property identifier field: NavigateUriProperty
To link to a particular inline element, specify the element name preceded by a pound symbol (#).
When a user moves the mouse pointer over a Hyperlink, the URI stored in the NavigateUri property is displayed in the status bar. Hyperlink navigates to this URI when the user clicks the Hyperlink. If the value of the NavigateUri property changes after the user clicks the Hyperlink, but before the subsequent navigation request, Hyperlink ignores the new value and navigates to the URI that was the value of the NavigateUri property when the user clicked the Hyperlink.
Silverlight for Windows Phone
The following code snippet shows how the NavigateUri property is used to insert a Hyperlink.
<!--A RichTextBox with hyperlink.--> <RichTextBox IsReadOnly="True"> <Paragraph> Displaying text with <Hyperlink NavigateUri="http://www.msdn.com" TargetName="_blank">hyperlink</Hyperlink>. </Paragraph> </RichTextBox>
//A RichTextBox with hyperlink. private void HyperlinkRTB() { //Create a new RichTextBox. RichTextBox MyRTB = new RichTextBox(); // Create a Run of plain text and hyperlink. Run myRun = new Run(); myRun.Text = "Displaying text with "; Hyperlink MyLink = new Hyperlink(); MyLink.Inlines.Add("hyperlink"); MyLink.NavigateUri = new Uri("http://www.msdn.com"); MyLink.TargetName = "_blank"; // Create a paragraph and add the Run and hyperlink to it. Paragraph myParagraph = new Paragraph(); myParagraph.Inlines.Add(myRun); myParagraph.Inlines.Add(MyLink); // Add the paragraph to the RichTextBox. MyRTB.Blocks.Add(myParagraph); //Add the RichTextBox to the StackPanel. MySP.Children.Add(MyRTB); }
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.