位于UIElement上的图片未显示[WPF]

时间:2013-11-27 15:58:41

标签: c# wpf image

我正在创建"Custom Control"我将图片放在"Themes"文件夹中,让我们在image.jpg的{​​{1}}中调用Generic.xaml,我写道:

"Custom Control"

我重新编译了这个项目,当我在其他项目中使用它时,会显示Button,但图像不是......我做错了什么...此外,图像在其属性中设置为Resource。 / p>

1 个答案:

答案 0 :(得分:1)

您应该正确找到您的图片 像这样的东西

<Button Width="30" Height="30">
<Image Source="/WpfApplication1;component/Images/image.jpg" Width="20" Height="20"/>
</Button>