質問

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?

役に立ちましたか?

解決

How about

mywindow.Icon = new BitmapImage(new Uri(@"C:\myicon.ico"));
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top