I've got this
WPF code which works...
Uri iconUri = new Uri("pack://application:,,,/media/images/VS.ico", UriKind.RelativeOrAbsolute);
this.Icon = BitmapFrame.Create(iconUri);
I'm using a windows forms notifyIcon control in my
WPF app, and I now need to assing the Icon to it. How do I get from my
WPF icon to a System.Drawing.Icon
…