2

我正在 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?

4

0 回答 0