在我的Windows Phone 8.1应用程序中,我有一个带有超链接的RichTextBlock。我在超链接的点击事件中添加了一些代码块。问题是每当我点击超链接时,我的应用程序就会因“访问冲突”异常而崩溃。仅当键盘可见时才会发生这种情况。如果键盘被重新签名,那么我不会得到异常。此外,这仅发生在WP8.1设备上,而不是W10设备上。以下是我的代码。
XAML
<StackPanel>
<RichTextBlock FontSize="40" x:Name="rtb"/>
<TextBox x:Name="tb"/>
</StackPanel>
背后的代码
void MainPage_Loaded(object sender, RoutedEventArgs e)
{
rtb.Blocks.Add(ContentForRichTextBox("9910918444"));
}
这就是我为RichTextBox构建内容的方式
public Paragraph ContentForRichTextBox(string plainString)
{
Paragraph richContent = new Paragraph();
try
{
string[] plainStringSplit = plainString.Split(' ');
foreach (var word in plainStringSplit)
{
var number = new Hyperlink();
number.Foreground = new SolidColorBrush(Colors.DarkBlue);
number.Inlines.Add(new Run { Text = word });
number.Click += (s, e) =>
{
try
{
Windows.ApplicationModel.Calls.PhoneCallManager.ShowPhoneCallUI(word, "Some dude");
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Exception HelperMethod number.Click : " + ex.ToString());
}
};
richContent.Inlines.Add(number);
//add a space
if (plainStringSplit.Last() != word)
{
richContent.Inlines.Add(new Run { Text = " " });
}
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Exception HelperMethod ContentForRichTextBox : " + ex.ToString());
}
return richContent;
}
每当我点击超链接并且我的TextBox处于焦点时,应用程序崩溃并出现异常
The program '[2992] App5.exe' has exited with code -1073741819 (0xc0000005) 'Access violation'.
非常感谢任何帮助。
答案 0 :(得分:1)
我在WP8.1应用程序上遇到同样的问题,HyperLink导致访问冲突。我使用HyperlinkButton而不是Hyperlink获得解决方法。要添加HyperlinkButton,您需要以这种方式将其包含在inlineUIContainer元素中:
InlineUIContainer uiContainer = new InlineUIContainer();
HyperlinkButton b = new HyperlinkButton();
b.Content = runText.Text;
b.NavigateUri = uri;
b.Tag = uri;
b.Click += (s, args) =>
{
//Your click logic here.
};
uiContainer.Child = b;
paragraph.Inlines.Add(uiContainer);
希望这也有助于你!