.Net 4.0中的点汇编参考,似乎找不到它

发布于 2024-10-02 06:41:31 字数 256 浏览 3 评论 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 技术交流群。

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

发布评论

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

评论(2

爱要勇敢去追 2024-10-09 06:41:31

命名空间:System.Windows
程序集:WindowsBase(在 WindowsBase.dll 中)

因此您需要引用WindowsBase.dll程序集。 System.Windows 只是命名空间。

Namespace: System.Windows
Assembly: WindowsBase (in WindowsBase.dll)

So you need to reference the WindowsBase.dll assembly. System.Windows is only the namespace.

梦途 2024-10-09 06:41:31

您必须添加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.

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