So, I have a Process running in C#, and I want to make it a system tray. Is it possible?
This is the code I am using:
Process proc = Process.Start("XXXX");
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is for the process to control whether it should show as a task on the taskbar, or in the notification area; As such, you couldn’t control this for a process you’re starting unless it documents a command line option for this purpose.
Of course, you can control this for your own WinForms applications using components such as the
NotifyIconcomponent (part of the .Net framework).