The type or namespace name 'Window' does not exist in the namespace 'System.Windows'

可紊 提交于 2019-11-30 09:34:17

问题


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.

Here is my code:

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:

The type or namespace name 'Window' does not exist in the namespace 'System.Windows'

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.

What am I doing wrong?


回答1:


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



来源:https://stackoverflow.com/questions/21621465/the-type-or-namespace-name-window-does-not-exist-in-the-namespace-system-wind

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!