This is my resource:
This is how the Viewbox displays it:
This is how I want it:
Any way to achieve that?
You should change RenderOptions.BitmapScalingMode
to HighQuality
against an Image
Use high quality bitmap scaling, which is slower than LowQuality mode, but produces higher quality output. The HighQuality mode is the same as the Fant mode.
your XAML
<Image Source="..." RenderOptions.BitmapScalingMode="HighQuality"/>