gpt4 book ai didi

c# - 如何创建可以与GUI *或*一起作为C#中的Windows服务运行的Windows应用程序?

转载 作者:太空宇宙 更新时间:2023-11-03 17:37:26 27 4
gpt4 key购买 nike

我想使用C#创建一个应用程序...:


可以使用GUI作为Windows应用程序运行(它将指示进度,状态等)

要么
无需Windows即可作为Windows服务运行


可能吗?有人可以让我开始吗?

我猜这是我可以创建一个Windows服务,然后创建一个单独的GUI应用程序,该应用程序可以轮询Windows服务以从中获取数据(进度,状态等)。

在这种情况下,如何从GUI应用程序从Windows服务中获取数据?

最佳答案

我正在做的事情与您要的类似。我对它进行了编程,以便将命令行参数“ / form”发送给可执行文件时,它将弹出一个Windows窗体,而不是作为服务运行。

至于运行后台作业本身,在这两种情况下,您都需要执行某种线程处理(也许使用计时器)来完成工作并异步将状态报告给表单。这将是关于创建线程GUI应用程序的一个完全不同的讨论主题。

“表单或服务”代码如下所示:

static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
private static void Main(string[] args)
{
if (args.Length > 0 && args[0] == "/form")
{
var form = new MainForm();
Application.Run(form);
return;
}

var ServicesToRun = new ServiceBase[]
{
new BackgroundService()
};

ServiceBase.Run(ServicesToRun);
}
}

关于c# - 如何创建可以与GUI *或*一起作为C#中的Windows服务运行的Windows应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/567890/

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