The type or namespace name #39;Window#39; does not exist in the namespace #39;System.Windows#39;(命名空间“System.Windows中不存在类型或命名空间名称“Window)
问题描述
我正在尝试为 WPF Window 类编写扩展方法.我在我的解决方案的一个类库项目中这样做,以便我可以在解决方案中的所有项目中使用它.
I am trying to write an extension method for the WPF Window class. I am doing it in a class library project in my solution, so that I can use it in all my projects in the solution.
这是我的代码:
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)
{
}
}
}
当我尝试编译它时,我收到以下错误:
When I try to compile this, I get the following error:
命名空间中不存在类型或命名空间名称Window"'System.Windows'
The type or namespace name 'Window' does not exist in the namespace 'System.Windows'
是的,我确实在我的类库项目中添加了对 System.Windows 和 System.Windows.Forms 的引用,它们显示在解决方案资源管理器的项目中的引用下.
Yes, I DID add references to System.Windows and System.Windows.Forms in my class library project, and they are showing under References in the project in Solution Explorer.
我做错了什么?
推荐答案
将 PresentationFramework.dll
引用添加到包含 System.Windows
命名空间的项目中.
Add PresentationFramework.dll
reference to your project it contains the System.Windows
namespace.
http://msdn.microsoft.com/es-es/library/system.windows.window(v=vs.110).aspx
这篇关于命名空间“System.Windows"中不存在类型或命名空间名称“Window"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:命名空间“System.Windows"中不存在类型或命名空间名称“Window"


基础教程推荐
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01