XAML Image Quality (interpolation) in a Metro-Style App
Given the following Image object (it's in the DataTemplate of a ListView object): <Image Source="{Binding ImgSource}" ImageOpened="img_ImageOpened" /> how am I supposed to get an high-quality bicubic-interpolated image? (on screen, the size of this Image is smaller than the source PNG, but the default resizing appears to be performed with the poor-quality "nearest neighbor" interpolation). Since I would like to rely on data binding alone (whenever the ImgSource of the associated data item changes, the Image content should change), I've tried to set an ImageOpened handler and change the just