Is it possible to hide winform in TaskManager application tab?
问题 I'm writing a transparent WinForms app and I want to hide the app from showing in Task Manager's applications tab. I'm OK with the fact that it will show in Processes (in fact it should). If I set: this.ShowInTaskbar = false; it only hides from taskbar. Full code i have i have a timer made from labels public Form1() { InitializeComponent(); this.BackColor = Color.LimeGreen; this.TransparencyKey = Color.LimeGreen; Timer time = new Timer(); time.Interval = 1000; time.Tick += new EventHandler