gpt4 book ai didi

c# - 如何调整图像控件上的图像大小?

转载 作者:太空宇宙 更新时间:2023-11-03 19:56:55 24 4
gpt4 key购买 nike

我正在尝试调整 UWP Image control 上的图像大小(XAML) 使用

ScaleTransform t = (ScaleTransform)image.RenderTransform;

但是我得到一个错误:

Unable to cast object of type 'Windows.UI.Xaml.Media.MatrixTransform' to type 'Windows.UI.Xaml.Media.ScaleTransform'.

那么如何调整它的大小(不使用 Stretch 属性)?

最佳答案

现有的 RenderTransform 是 MatrixTransform 类型,不能转换为 ScaleTransform。

您可以用新的 ScaleTransform 替换现有的 MatrixTransform:

image.RenderTransform = new ScaleTransform(2, 2);

或者您可以使用所需的比例更新现有的 MatrixTransform:

(image.RenderTransform as MatrixTransform).Matrix = new MatrixTransform(2, 0, 0, 2, 0, 0);

关于c# - 如何调整图像控件上的图像大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32617185/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com