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"


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01