vote up 0 vote down star

Hello,

C# 2005.

A client has asked me to remove the icon from the form's title bar. As they don't want to display any icon. But this me guessing as when I click on the icon property you have to browse to some icon.

Many thanks,

flag

60% accept rate

4 Answers

vote up 3 vote down check

Set ShowIcon Property of the form to False to see if that's what your client wants.

link|flag
vote up 2 vote down

There are two ways.

First is to create an empty Icon file and then Select Form -> Right Click -> Goto Properties -> Goto Icon -> Select your file.

The other approach is to set FormBorderStyle of the form to FormBorderStyle.SizableToolWindow or FormBorderStyle.FixedToolWind

And one more way is to set ShowIcon property to be false.

link|flag
vote up 1 vote down

Set

FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog

link|flag
vote up 1 vote down

You can set ControlBox = false. However, that will remove not only the icon but also maximize and minimize buttons from the title bar.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.