Develop a program that runs in the background in .NET?

后端 未结 6 1698
天涯浪人
天涯浪人 2020-12-04 08:53

I have made a small program in C# that I want to run in the background and it should only appear when a certain key combination is pressed. How can I do this?

6条回答
  •  离开以前
    2020-12-04 09:08

    You can create a Windows Service Application. It runs as a background process. No user interface. This can also start automatically when the computer boots. You can see the rest of the background processes in Task Manager or you can type in services.msc in Command Prompt.

    This might help. http://msdn.microsoft.com/en-us/library/9k985bc9%28v=vs.80%29.aspx

提交回复
热议问题