Reputation: 2285
I'm trying to change the top left corner icon of the winform from the default one to my icon:
I've tried it by going to the Properties of my project, and go into Application, the set my own icon it in "Icon and Manifest".
But after that, it still show the same old default icon. Is there something I done wrong?
Upvotes: 24
Views: 37900
Reputation: 1
Make Sure that Photo you're choosing is .ico format then you can change simply change it in visual studio form properites.
Upvotes: 0
Reputation: 87
It's quite easy; just right-click your window in the visual studio designer and click on settings then navigate in the settings sidebar to the icon section - click on the three dots and select a .ico file as your icon to be displayed in the top left corner of you application.
Upvotes: 0
Reputation: 341
You can use the icon setted for application using the following code:
public MainForm()
{
InitializeComponent();
Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
}
Upvotes: 7
Reputation: 17508
Your form has properties associated with it (in design mode, have the focus on your form and click F4). One of the properties is Icon
and this is what you're looking for.
The icon you are referring to, in Application Properties, is the icon that will be used in the .EXE generated file.
Upvotes: 73