Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将一个应用程序移植到 Windows 8 Metro,它有许多资源文件(例如位图文件、xml 文件、二进制文件),它们是运行所必需的。如何在应用程序中包含这些以及如何从 C++ 访问它们?
谢谢。
只需添加资源并将其构建操作设置为“内容”。之后,您可以直接使用引用 XAML 中的图像。
<Image Source="images/logo.png" />
在 C# 中
var uri = new Windows.Foundation.Uri('ms-appx:///images/logo.png'); var file = Windows.Storage.StorageFile.getFileFromApplicationUriAsync(uri);
更多>>