基于发布的代码的基本用法或 RichTextBox:
<RichTextBox
Width="400" Height="400"
Background="Transparent"
BorderBrush="White"
BorderThickness="3">
<Paragraph>Download it directly to the
<Hyperlink NavigateUri="http://itunes.apple.com/fi/app/goalapp/id502461189?ls=1&mt=8" TargetName="_blank">iTunes Store</Hyperlink>
or <Hyperlink NavigateUri="https://market.android.com/details?id=com.strikersoft.meramal.se" TargetName="_blank">Android Market</Hyperlink>.
The application is launched for Swedish app store.
</Paragraph>
</RichTextBox>
注意:在创建 URL 时,必须对 URL 进行编码,即在 URL 中使用与号 (&) 时,它们应该创建为&
并且NavigateUri
需要TargetName="_blank"
添加的属性才能在浏览器中打开。
编辑
在代码中设置XAML
属性时,xml命名空间需要包含在xml中。将整个 xml 块(并确保如上所述对 URL 进行编码)包装在一个Section
节点中:
<Section
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Paragraph>
Download it directly to the
<Hyperlink NavigateUri="http://itunes.apple.com/fi/app/goalapp/id502461189?ls=1&mt=8" TargetName="_blank">iTunes Store</Hyperlink>
or <Hyperlink NavigateUri="https://market.android.com/details?id=com.strikersoft.meramal.se" TargetName="_blank">Android Market</Hyperlink>.
The application is launched for Swedish app store.
</Paragraph>
</Section>
在后面的代码中,确保 XML 是一个字符串,即:
var xml = XDocument.Load("MyDoc.xml");
richTextBox.Xaml = xml.ToString();