无法在控制台应用程序 C# 中导入 System.Windows.Window Class?

Cannot import System.Windows.Window Class in a console application C#?

就像我在标题中所说的那样,我无法在 visual studio 中的 c# 控制台应用程序中使用 Window class

您可能忘记添加引用了。要添加它,请打开 Solution Explorer,右键单击 References,select add Reference , 搜索 window 和 select System.Windows 项。现在您可以导入 System.Windows 并使用 Window class.

但是您不能像您预期的那样使用它 - 有关详细信息,请阅读您提供的 link。

只需右键单击引用 select 添加引用转到框架和 select System.Windows。

这是屏幕截图。

除了对 System.Windows 程序集的引用之外,您还需要添加对 PresentationCorePresentationFramework 的引用,如果您想使用 xaml,则 System.Xaml .

您很可能还需要参考 WindowsBase 程序集。