.Net 4.0中的点汇编参考,似乎找不到它
我无法在 .Net 4.0 中找到点结构的正确程序集引用。
API 参考位于此处。
但解决方案资源管理器中的参考列表中不存在 System.Windows。
我知道我可以自己制作一个简单的点结构,但我想使用它,以防我在其他组件中遇到此问题。 =)
I'm unable to find the correct assembly reference in .Net 4.0 for the Point Structure.
The API reference is here.
But System.Windows does not exist in my Reference list from the Solution Explorer.
I understand I could have made a simple Point Structure myself but I wanted to use this in case I run into this problem with other assemblies. =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因此您需要引用
WindowsBase.dll
程序集。System.Windows
只是命名空间。So you need to reference the
WindowsBase.dll
assembly.System.Windows
is only the namespace.您必须添加WindowsBase程序集(程序集:WindowsBase(在WindowsBase.dll中))。仔细阅读MSDN。
命名空间名称并不总是 DLL 名称。
You must add WindowsBase assembly (Assembly: WindowsBase (in WindowsBase.dll)).Read MSDN carefully.
Namespace name is not always DLL name.