将图像添加到WPF页面后,图像会变大吗?

时间:2011-09-26 10:50:02

标签: wpf image

我有400 * 400像素的图像。现在,当我将它添加到WPF页面时:

<Image Source="Resources\about.png" Stretch="None"/>

它的尺寸变大了:

enter image description here

知道为什么会出现这种情况吗?

1 个答案:

答案 0 :(得分:1)

明确指定宽度和高度:

<Image Source="Resources\about.png" Width="400" Height="400" />

(此外,在您的屏幕截图中,看起来HorizontalAlignmentVerticalAlignment设置为Stretch?)