I\'m trying to change the top left corner icon of the winform from the default one to my icon:
Make Sure that Photo you're choosing is .ico format then you can change simply change it in visual studio form properites.
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.
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.
You can use the icon setted for application using the following code:
public MainForm()
{
InitializeComponent();
Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
}