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"
基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- rabbitmq 的 REST API 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01