程序运行时图像为空白

时间:2016-06-01 08:57:09

标签: c# wpf xaml

当我从我的WPF项目添加图像并使用资源作为源时,它在设计器中看起来没问题:

Main window in designer

我的代码是:

<Window x:Class="WpfPlay.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfPlay"
    mc:Ignorable="d"
    Title="MainWindow" Height="271.107" Width="392.316">
<Grid>
    <Image x:Name="image" HorizontalAlignment="Left" Height="128" Margin="22,22,0,0" VerticalAlignment="Top" Width="342" Source="pack://siteoforigin:,,,/Resources/logo.jpg" />
    <TextBox x:Name="textBox" HorizontalAlignment="Left" Height="23" Margin="137,185,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>

</Grid>

但是我发现当我运行程序时,虽然可以看到文本框,但图像为空白

2 个答案:

答案 0 :(得分:0)

@Clemens有正确答案 - 将图像文件的构建操作设置为资源

file properties

答案 1 :(得分:0)

只是为@Clemens注释添加有用的提示:如果你的logo.jpg文件包含在与控件相同的项目中,那么在输入Source="pack://application:,,,/后你可以按 Ctrl + Space 和visual studio会向您显示有关您可以引用的文件的帮助消息。