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

后端 未结 6 1703
天涯浪人
天涯浪人 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条回答
  •  萌比男神i
    2020-12-04 09:18

    Create a windows form application, and delete Form1

    Modify program.cs Application.Run(new Form1()); to Application.Run();

提交回复
热议问题