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?
Create a windows form application, and delete Form1
Modify program.cs Application.Run(new Form1()); to Application.Run();
Application.Run(new Form1());
Application.Run();