BitmapImage.UriSource 属性

定义

获取或设置生成此 BitmapImage 的图形源文件的统一资源标识符 (URI) 。

public:
 property Uri ^ UriSource { Uri ^ get(); void set(Uri ^ value); };
Uri UriSource();

void UriSource(Uri value);
public System.Uri UriSource { get; set; }
var uri = bitmapImage.uriSource;
bitmapImage.uriSource = uri;
Public Property UriSource As Uri
<BitmapImage UriSource="uri" />

属性值

描述统一资源标识符 (URI 的对象,) 生成此 BitmapImage 的图形源文件。

注解

如果要将图像源文件应用于特定 Image 元素, 则 BaseUri 属性可用于形成 URI

在内存不足的情况下,可能会引发异常并显示消息“无法识别映像”和 HRESULT 0x88982F60。 虽然此异常通常表示数据错误,但如果应用接近其内存限制,则异常的原因可能是内存不足。 在这种情况下,建议释放内存,然后重试。

适用于

另请参阅