图像在设计时可见但不是运行时

时间:2014-08-01 09:15:42

标签: wpf xaml

我在App.xaml中有这些:

<Application.Resources>
    <BitmapImage x:Key="myImage1" UriSource="/marathon1.jpg" />
    <BitmapImage x:Key="myImage2" UriSource="/marathon2.png" />
    <BitmapImage x:Key="myImage3" UriSource="/marathon3.jpg" />
    <BitmapImage x:Key="myImage4" UriSource="/marathon4.jpg" />

</Application.Resources>

这些在MainWindow.xaml:

<Image Source="{StaticResource myImage1}"/>
<Image Source="{StaticResource myImage3}"/>
<Image Source="{StaticResource myImage4}"/>
<Image Source="{StaticResource myImage2}"/>

我可以在设计时看到图像,但在运行应用程序时它们不可见。 我怎样才能解决这个问题?感谢

0 个答案:

没有答案