我正在尝试为WPF Window类编写扩展方法。我在我的解决方案中的类库项目中这样做,以便我可以在解决方案中的所有项目中使用它。
这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace ExtensionMethods
{
public static class MyExtensions
{
public static void ResizeToPrimaryScreenWorkingArea(this System.Windows.Window w)
{
}
}
}
当我尝试编译时,我收到以下错误:
命名空间中不存在类型或命名空间名称“Window” 'System.Windows'
是的,我在我的类库项目中添加对System.Windows和System.Windows.Forms的引用,它们显示在解决方案资源管理器中项目的引用下。
我做错了什么?
答案 0 :(得分:5)
向您的项目添加PresentationFramework.dll
引用,其中包含System.Windows
命名空间。
http://msdn.microsoft.com/es-es/library/system.windows.window(v=vs.110).aspx