Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete standard icon in windows form

Tags:

how to just delete that windows form application icon in the left corner without replacing it with another icon?

like image 219
Sjemmie Avatar asked Jan 21 '10 13:01

Sjemmie


People also ask

How do I remove a form from my taskbar?

To prevent your form from appearing in the taskbar, set its ShowInTaskbar property to False.


2 Answers

I assume that you're using .Net WinForms.

Set the form's ShowIcon property to false.

like image 85
SLaks Avatar answered Oct 07 '22 20:10

SLaks


If it is .NET (Winforms) the form should have a ShowIcon property. Set this to false.

like image 27
edosoft Avatar answered Oct 07 '22 20:10

edosoft