Hi,
Is there any way to change the icon of an application after it is launched? I want to change the icon to reflect a notification.
Thank you
edit: Wpf solution based on Fredrik Mörks answer.
Uri iconUri = new Uri("icon1.ico", UriKind.RelativeOrAbsolute);
this.Icon = BitmapFrame.Create(iconUri);