Question

I have a WPF project with a window. If I want to set the window's icon property in C#, it allow me to feed it only an ImageSource and it doesn't accept icon files. If I set the property in XAML, it accepts icon files without any problem. How can I set the a WPF Window's icon to an icon file through C# code?

Was it helpful?

Solution

How about

mywindow.Icon = new BitmapImage(new Uri(@"C:\myicon.ico"));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top