XNA 游戏可以使用 WP7 的isolatedStorageSettings 吗?
我一直在尝试将一些 Windows Phone 7 代码在 Silverlight 之间移植到 XNA,该代码依赖于isolatedStorageSettings,但我无法让 Visual Studio 来解决它。当我查看 Intellisense 在 System.IO.IsolatedStorage 和 System.IO.IsolatedStorage 下解决的问题时,它列出了IsolatedStorageFile、IsolatedStorageException &隔离存储流。
文档说受支持的版本适用于 Silverlight,但我不明白为什么我会因为项目类型而看到差异。
谢谢
I've been trying to port some Windows Phone 7 code between Silverlight to XNA which relies on IsolatedStorageSettings but I can't get Visual Studio to resolve it. When I have a look at what Intellisense is resolving under System.IO.IsolatedStorage & it lists IsolatedStorageFile, IsolatedStorageException & IsolatedStorageStream.
The documentation says that the supported version is for Silverlight but I don't understand why I am seeing the difference because of the project types.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在没有额外项目引用的 XNA 项目中,我可以进行以下工作:
添加对 System.Windows.dll 的引用后,我可以执行以下操作:
如果您无法使上述工作正常进行,您可以发布你正在尝试的一个例子。
The following work for me in an XNA project with no extra project references:
After adding a reference to
System.Windows.dll
I can then do:If you can't get the above working, can you post an example of what you're trying.