I have a window with a title on it. When the user selects a choice from a drop down list, the title image can change. The problem is when the image loads, it\'s a blurred, s
Here is how it worked beautifully for me. In the window resources add the image.
Then the code goes like this.
Image img = new Image() img.Source = ((Image)this.Resources["delImg"]).Source;
"this" is referring to the Window object