我正在Windows Phone 8.1上开发应用程序。我正在使用RichTextBlock来显示丰富的内容:文本,图像,超链接。
以下是如何为富文本块创建图像:
new InlineUIContainer
{
Child = new Image
{
Source = new BitmapImage(new Uri("http://img.jpg", UriKind.Absolute))
}
};
我尝试用里面的图像创建超链接:
hyperlink.Inlines.Add(CreateImageInlineUIContainer(...));
这行代码抛出异常:
ArgumentException: A first chance exception of type 'System.ArgumentException' occurred in mscorlib.ni.dll
Additional information: Value does not fall within the expected range.
我错过了什么吗?有没有其他方法可以将带图像的超链接添加到RichTextBlock?