12

谁能告诉我如何在 XAML 中将源设置为来自 Resource 的图像。目前我有

 <Image x:Name="img" Panel.ZIndex="1" Source="D:\Img100.jpg"  Stretch="Uniform"/>

我希望图像源来自资源。

谢谢。

4

1 回答 1

32

首先,您必须使用BuildAction将图像包含在您的项目中 Resource

然后你可以直接在你的图片中使用它

 <Image Source="Img100.jpg"/>

或者制作一个可重用的图片资源

App.xaml(或其他资源字典)

<Application.Resources>
    <BitmapImage x:Key="myImage" UriSource="Img100.jpg" />
</Application.Resources>

元素:

<Image Source="{StaticResource myImage}" />
于 2013-03-13T06:11:29.700 回答