c# - How to make my program a background process -
I wrote a program in C # .NET, which needs to be run in the background. I mean that any of them User interface should be Neither a GUI nor CLI is a service of windows
(since it must run after the user enters).
This example should be run in the background. Example of such a program AdobeUpdater.exe
, GoogleUpdater.exe
etc.
Another option would be to create a Windows application and set these two properties:
this.WindowState = FormWindowState Minimized; This.ShowInTaskbar = false;
Comments
Post a Comment