Steve H.
Steve H.

Reputation: 3373

C# Winform Binary Icon

I want to change the icon my binary has for my applications. The people I work with aren't technologically savvy and quite literally changed AppName.exe to CLICK ME.exe because they didn't know which icon to click...

Anyway, I figure an easy solution to this is to just make all of my applications for them have the same, bright icon so they will never be so confused again. I have no idea how to do this, and haven't found much help on google.

I hope I don't get dinged too hard on my rep, because I'm not even sure this is a programming question!

Upvotes: 2

Views: 1053

Answers (4)

Joshua
Joshua

Reputation: 43337

Binary icon can be set from project properties, section "Application".

Upvotes: 6

Jacob G
Jacob G

Reputation: 3665

You can right-click the project in Solution Explorer, select Properties and, in the displayed window, set the Icon to be used for your project output.

Upvotes: 1

Daver
Daver

Reputation: 503

Open the properties for the application's project and go to the "Application" tab. In the "Icon and manifest" section, you can select an ico file to be the application icon. That should do it.

Upvotes: 3

Dave
Dave

Reputation: 15016

If your app is in a sea of icons anyway, everything starts to look the same. I actually propose that you not bother with this, and create shortcuts on the desktop for them instead. They can even have a "Steve H's apps" folder on the desktop with all shortcuts there. When you deploy, have NSIS or IS or whatever installer you use create the shortcuts as well.

Upvotes: 2

Related Questions