在对图像使用 UniformToFill 时,如何控制 C# 或 XAML 中的剪切

发布于 2024-07-26 16:46:43 字数 350 浏览 4 评论 0原文

我在可调整大小的窗口中有一个图像控件,其拉伸属性设置为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雄赳赳气昂昂 2024-08-02 16:46:43

Horizo​​ntalAlignment 和 VerticalAlignment 属性通过图像控件确定此行为。

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

我猜我太笨了!

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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文