命名空间“System.Windows"中不存在类型或命名空间名称“Window"

The type or namespace name #39;Window#39; does not exist in the namespace #39;System.Windows#39;(命名空间“System.Windows中不存在类型或命名空间名称“Window)
本文介绍了命名空间“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"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)