For some reason when I use <Image ...>
in WPF, the image is shown smaller than its actual size. There is plenty of space for the image, it's just that it takes up all the space it can by default:
<Image Source="data/images/my-image.png" />
I tried setting Stretch="None"
but when I do that, the image is displayed smaller than its actual size! So what's going on here?