XNA 4 中的内容处理器参数 - 缺少什么?
我的 XNA 项目中有一个内容处理器,我想添加几个参数,以便我可以控制其对 Visual Studio 中某些文件的行为。
我关注本页的第二部分: http://msdn.microsoft.com/ en-us/library/bb975253.aspx,这与许多其他网站上的信息相同,但是当我尝试将属性指定为参数时,我得到三个属性的“找不到类型或命名空间” 。
它可能类似于缺少“using”语句,但如果没有工作示例项目,我无法找出命名空间是什么/在哪里。
I have a content processor in my XNA project and I would like to add a couple of parameters so I can control its behaviour for certain files in Visual Studio.
I follow the second section of this page: http://msdn.microsoft.com/en-us/library/bb975253.aspx, which is the same info as on many other sites, however when I try to specify a property as a parameter I get "type or namespace cannot be found" for the three attributes.
Its probably something like a missing 'using' statement but without a working example project I can't find out what/where the namespace is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 System.ComponentModel 程序集/命名空间中找到这些类。例如,以下是 DisplayNameAttribute 的 MSDN 文档
You can find these classes in the System.ComponentModel assembly/namespace. For example, here's the MSDN documentation for the DisplayNameAttribute