Live Chat Icon For mobile
Live Chat Icon

How can I prevent a form from being shown in the taskbar?

Platform: WinForms| Category: Form

You need to set the form’s ShowInTaskbar property to False to prevent it from being displayed in the Windows taskbar.

[C#]
	this.ShowInTaskbar = false;

[VB.NET]
	Me.ShowInTaskbar = False

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.