在WinRT XAML中,如何在外部/单独的汇编/项目中引用图像?

时间:2012-06-08 20:48:53

标签: windows-8 winrt-xaml

在WinRT(Windows 8)中似乎有所不同。 有人想出来吗?

我的实验。

当然:

文件构建操作==内容&&复制到输出目录==始终复制

这些似乎不起作用:

<Image Source="Folder/file.jpg" />
<Image Source="/Folder/file.jpg" />
<Image Source="Namespace;Folder/file.jpg" />
<Image Source="Namespace;/Folder/file.jpg" />
<Image Source="pack://Namespace;Folder/file.jpg" />
<Image Source="pack://Namespace;/Folder/file.jpg" />

出于绝望,我试过了:

文件构建操作==嵌入式资源&amp;&amp;复制到输出目录==始终复制

仍然失败。唉!

1 个答案:

答案 0 :(得分:15)

<Image Source = "ms-appx:///<projectName>/<folderName>/<contentName>" />

例如......

<Image Source = "ms-appx:///ClassLibrary1/Content/myimage.png" />

有关详情,请参阅How to Reference Content