gpt4 book ai didi

c# - 如何在 Windows Phone 中正确设置 xml 到 RichTextBox?

转载 作者:行者123 更新时间:2023-11-30 22:28:54 25 4
gpt4 key购买 nike

我有一个xml代码:

<Paragraph>Download it directly to the <Hyperlink NavigateUri="http://itunes.apple.com/fi/app/goalapp/id502461189?ls=1&mt=8">iTunes Store</Hyperlink> or <Hyperlink NavigateUri="https://market.android.com/details?id=com.strikersoft.meramal.se">Android Market</Hyperlink>. The application is launched for Swedish app store.</Paragraph>

richTextBox.Xaml = xml;

但在这种情况下我有一个错误,那么如何在 Windows Phone 中正确地将 xaml 设置为 RichTextBox?

更新

enter image description here

最佳答案

基本用法或基于发布的代码的 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&amp;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 block (并确保按上述方式对 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&amp;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();

关于c# - 如何在 Windows Phone 中正确设置 xml 到 RichTextBox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10517810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com