Is there a way to change the application icon after it starts? I want to change the icon to reflect the notification.
thanks
edit: Wpf solution based on Fredrick Murks answer.
Uri iconUri = new Uri("icon1.ico", UriKind.RelativeOrAbsolute); this.Icon = BitmapFrame.Create(iconUri);
source share