如何包含 System.Windows.Shapes?

发布于 2024-07-14 04:53:48 字数 415 浏览 7 评论 0原文

我正在使用带有 .NET Framework (v3.5) 的 Visual Studio 2008。 我似乎无法使用 System.Windows.Shapes 或除 Forms 之外的任何 System.Windows.* 。

以下是类描述的链接:

System.Windows.Shapes ( MSDN 库)

我需要做一些特殊的事情才能使用它吗?

我签入了所有框架文件夹,并且 System.Windows 的唯一 dll/xml 文件是 System.Windows.Forms。

我需要做什么才能让它发挥作用?

I am using Visual Studio 2008 with the .NET Framework (v3.5). I cannot seem to use System.Windows.Shapes, or anything System.Windows.* besides Forms.

Here is the link to the class description:

System.Windows.Shapes (MSDN Library)

Is there some special thing I need to do to use it?

I checked in all of the framework folders, and the only dll/xml files I have for System.Windows is System.Windows.Forms.

What do I need to do to get this to work?

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

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

发布评论

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

评论(5

终弃我 2024-07-21 04:53:48

此类是 WPF 的一部分,来自 MSDN :

形状类

程序集:PresentationFramework(在presentationframework.dll中)

This class is part of WPF, from MSDN:

Shape Class

Assembly: PresentationFramework (in presentationframework.dll)

无人问我粥可暖 2024-07-21 04:53:48

您需要添加对PresentationFramework 库的引用。

在 VisualStudio 中,在“解决方案资源管理器”中右键单击您的项目。 选择“添加参考”。 “PresentationFramework”库将位于“.NET”选项卡下。 您可能还需要添加“PresentationCore”和“WindowsBase”。

您可以通过转到“解决方案资源管理器”并展开“引用”项来查看项目当前的库引用。

You need to add a reference to the PresentationFramework library.

In VisualStudio, right click on your project in the "Solution Explorer". Select "Add Reference". The "PresentationFramework" library will be under the ".NET" tab. You may also need to add "PresentationCore" and "WindowsBase".

You can see your project's current library references by going to the "Solution Explorer" and expanding the "References" item.

猫瑾少女 2024-07-21 04:53:48

您可能需要添加对库的引用,可能是 System.Windows.Presentation

编辑:它位于 PresentationFramework 库中

You may need to add a reference to the library, probably System.Windows.Presentation

Edit: It is in the PresentationFramework library

燕归巢 2024-07-21 04:53:48
  1. 从 .Net 选项卡写入添加对PresentationFramework 的引用
  2. 使用 System.Windows.Shapes

,然后就完成了!

  1. Add reference to PresentationFramework from .Net tab
  2. write using System.Windows.Shapes

and you are done!

尝蛊 2024-07-21 04:53:48

在 .Net 4.0 中工作的其他解决方案:
转到引用 -> 添加引用并选择 .NET 选项卡下的 PrsentationFramework。

Other solution that works in .Net 4.0:
Go to referenes->add reference and choose PrsentationFramework under .NET tab.

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