3

我在一个可调整大小的窗口中有一个图像控件,其拉伸属性设置为UniformToFill.

<Image Name="some_image" Stretch="UniformToFill" Margin="0,0,0,0" />

剪辑窗口固定在图像的左上角;调整大小会切掉图像的右侧和底部。

我希望图像在所有方面都被平等地剪裁。我是否过于密集而忽略了一个明显的解决方案?

如何控制图像的剪辑方式?

(无关:这是我在 stackoverflow 上的第一篇文章。我只想开始说,谢谢,这个网站对我来说是很棒的资源)

4

1 回答 1

6

The HorizontalAlignment and VerticalAlignment property determine this behavior with an image control.

 <Image Name="some_image" Stretch="UniformToFill" Margin="0,0,0,0" HorizontalAlignment="Center" VerticalAlignment="Center" />

Guess i was being dense!

于 2009-07-16T05:45:23.697 回答