在我的 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'.
任何帮助将不胜感激。