我在XAML中为我的WPF项目定义了对我的资源的访问权限,如下所示:
xmlns:properties="clr-namespace:MyProject.Properties"
现在我想在these指南之后的XAML视图中使用它,即
<Image Height="100">
<Image.Source>
<BitmapImage DecodePixelHeight="60" UriSource="{x:Static properties:Resources.MyImage"/>
</Image.Source>
</Image>
但是,绑定到资源会返回一个Bitmap而不是所需的Uri类型。如何在XAML中正确引用我的位图作为图像的来源?
N.B。我想避免XAML中的硬编码路径字符串,因此引用属性。