gpt4 book ai didi

c# - 尝试从控制台应用程序调用 WPF 表单时出错

转载 作者:行者123 更新时间:2023-11-30 20:07:23 25 4
gpt4 key购买 nike

我有一个控制台应用程序,我需要根据参数偶尔启动一个 WPF 表单。我并尝试以下操作:

if (arg == "/C")
{
System.Windows.Application application = new System.Windows.Application();
application.Run(new EJConfig.MainWindow());
}

问题是当我添加对 System.Windows 的引用时,它没有出现在 .NET 组件列表中,没有它我会收到以下错误:

The type or namespace name 'Windows' does not exist in the namespace 'System' (are you missing an assembly reference?)

最佳答案

你试过添加:

using System.Windows;

到c#文件的顶部?您可能还需要这些程序集:

Assembly: PresentationFramework (in PresentationFramework.dll)

Assembly: PresentationCore (in PresentationCore.dll

检查一下 here

关于c# - 尝试从控制台应用程序调用 WPF 表单时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8564146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com