HelpNeeder
HelpNeeder

Reputation: 6480

How do I create a icon for my program executable file in C#?

I did some Googling but all results point to Icons from the left top of the program.

How can I change the icon of my program so if it sits on desktop it has a nice look to it?

Regards.

Upvotes: 3

Views: 503

Answers (5)

Ricardo
Ricardo

Reputation: 1

I created an Icon using a 3d software, after rendering the image, I open it in Gimp and I saved it as an Icon file, to do so click File -> Export, in the Export Image dialog box type the name for your icon and as the file extension type .ico (yourIcon.ico). Gimp is a open source program.

Upvotes: 0

competent_tech
competent_tech

Reputation: 44931

You can add a higher-resolution icon for the desktop using your installation program.

Upvotes: 0

SliverNinja - MSFT
SliverNinja - MSFT

Reputation: 31641

Your icon probably just needs to have a higher resolution layer. Use this online converter with your source image with at least 128x128 resolution. It will build the proper Windows icon set - no matter the bit depth of the client (32, 16, etc.).

Upvotes: 0

GameAlchemist
GameAlchemist

Reputation: 19294

in the properties of your project, in 'Application' tab, you can set your icon. It must be a .ico file, but you have online converters that will do the job to get them from .png to .ico for you.

Upvotes: 0

user1054326
user1054326

Reputation: 318

In Visual Studio solution explorer, right click your main project > select bottom option, properties > on the bottom of the page you will see project icon and manifest, browse for the icon you want to use.

Hope that helps.

Corby

Upvotes: 6

Related Questions