如何获取 WP7 内容项目中的资产列表?

发布于 2024-10-29 22:50:34 字数 246 浏览 1 评论 0原文

我可以使用以下方式加载纹理:

Texture2D texture = ContentManager.Load<Texture2D>(assetName);

但是如果文件不存在,这会引发异常。有没有办法首先确定所请求的给定名称的资产是否确实存在?

我使用后缀数字计数器(art001.png,art002.png,...)存储一系列资源,并且希望通过简单的调用来通过计数来预加载纹理。

I can load a textures with:

Texture2D texture = ContentManager.Load<Texture2D>(assetName);

But this throws an exception if the file doesn't exist. Is there a way to determine if a requested asset of a given name actually exists first?

I'm storing a series of assets using suffixed number counters (art001.png, art002.png, ...) and would like to have a simple call preload the textures by just counting through them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

战皆罪 2024-11-05 22:50:34

无法迭代 XAP 文件的内容。您只需维护要加载的资源的列表。

我的应用程序也遇到了类似的问题,我最终编写了一个简单的脚本,该脚本在特定文件夹中查找匹配的文件名模式并更新文本文件。因此,我会在构建应用程序之前运行脚本,将文本文件打包并在应用程序中读取以确定可以加载哪些文件。或者您可以跳过这个麻烦并手动在代码中维护列表。

It is not possible to iterate through the contents of your XAP file. You'll just have to maintain a list of the assets you wish to load.

I had a similar problem with my app, I ended up writing a simple script that looked in a particular folder for a matching filename pattern and updating a text file. So, I'd run the script before building the app, the text file gets packaged and read in the app to determine what files could be loaded. Or you can skip the trouble and maintain a list in code by hand.

你没皮卡萌 2024-11-05 22:50:34

您可以使用T4
ASP.NET MVC 有 T4MVC ,您可以使用类似以下内容

MVC.Dinners.Views.DinnerForm

而不是:

"DinnerForm"

我不是当然,但它可能在构建过程中使用 T4 的代码生成。请参阅文档

You could potentialy use T4.
ASP.NET MVC has T4MVC where you use something like:

MVC.Dinners.Views.DinnerForm

instead of:

"DinnerForm"

I'm not sure but it probably uses the T4's code generation on build process. See documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文