我有以下简单按钮,图像作为模板。问题是我想将图像更改为资源,而不是内容引用。我想这样做,所以我可以将DLL作为一个可重用的库共享,当我这样做时它不能很好地工作。
如何告诉Image对象以声明方式使用嵌入式资源?
<Button x:Name="LogoutButton" Click="Button_Click">
<Button.Template>
<ControlTemplate>
<Image Source="Resources/logout.png" />
</ControlTemplate>
</Button.Template>
</Button>
答案 0 :(得分:3)
好的,我明白了:
这就是它的全部。像内容路径一样引用它,它可以工作。