在对图像使用 UniformToFill 时,如何控制 C# 或 XAML 中的剪切
我在可调整大小的窗口中有一个图像控件,其拉伸属性设置为 UniformToFill
。
<Image Name="some_image" Stretch="UniformToFill" Margin="0,0,0,0" />
剪切窗口固定在图像的左上角; 调整大小会切断图像的右侧和底部。
我希望图像的所有侧面均等地被剪切。 我是不是太笨了,忽略了一个明显的解决方案?
如何控制图像的剪切方式?
(无关:这是我在 stackoverflow 上发表的第一篇文章。我只是想说,谢谢,这个网站对我来说是很棒的资源)
I have an image control in a resizable window with its stretch property set to UniformToFill
.
<Image Name="some_image" Stretch="UniformToFill" Margin="0,0,0,0" />
The clipping window is pegged to the top left of the image; resizing chops off the right and bottom of the image.
I want the image to be clipped equally on all sides. Am I being dense and overlooking an obvious solution?
How do I control how the image gets clipped?
(Unrelated: This is my first post to stackoverflow. I just wanted to start off saying, thanks, this site has been amazing resource for me)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HorizontalAlignment 和 VerticalAlignment 属性通过图像控件确定此行为。
我猜我太笨了!
The HorizontalAlignment and VerticalAlignment property determine this behavior with an image control.
Guess i was being dense!