如何包含 System.Windows.Shapes?
我正在使用带有 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
此类是 WPF 的一部分,来自 MSDN :
This class is part of WPF, from MSDN:
您需要添加对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.
您可能需要添加对库的引用,
可能是 System.Windows.Presentation编辑:它位于 PresentationFramework 库中
You may need to add a reference to the library,
probably System.Windows.PresentationEdit: It is in the PresentationFramework library
,然后就完成了!
and you are done!
在 .Net 4.0 中工作的其他解决方案:
转到引用 -> 添加引用并选择 .NET 选项卡下的 PrsentationFramework。
Other solution that works in .Net 4.0:
Go to referenes->add reference and choose PrsentationFramework under .NET tab.