我在我的 WPF 应用程序中设置了静态资源,如下所示:
<Application x:Class="Demos.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
<BitmapImage x:Key="logo" UriSource="Logo.png" />
</Application.Resources>
</Application>
我可以看到在设计时出现的图像具有以下声明:
<Image HorizontalAlignment="Left" Height="302" Margin="0,-106,0,0" VerticalAlignment="Top" Width="458" Source="{StaticResource logo}" Grid.RowSpan="2"/>
但是当我运行我的应用程序时,图像没有出现。任何想法我做错了什么?
提前致谢!