图像控制 - 从资源文件中动态加载图像

时间:2010-12-09 13:30:08

标签: wpf

我在代码中创建了一些图像控件,我想在此图像控件上设置一些我保存的图片(在创建图像控件之前加载这些图片)

我该怎么办?

1 个答案:

答案 0 :(得分:1)

在您的资源中指定您的图像

<BitmapImage x:Key="SampleImageSource" UriSource="sample.png" />

并将其指定给您的图像控件,如

<Image Source="{StaticResource SampleImageSource}" />

或者如果您尝试使用代码

img.Source = (ImageSource) Resources["SampleImageSource"];