gpt4 book ai didi

WPF RotateTransform 关于偏移量的问题

转载 作者:行者123 更新时间:2023-12-04 20:42:02 26 4
gpt4 key购买 nike

在下面的:

<Rectangle Height="60" HorizontalAlignment="Left" Margin="50,100,0,0" Name="rectangle2" Stroke="Black" VerticalAlignment="Top" Width="60" >
<Rectangle.RenderTransform>
<TransformGroup>
<RotateTransform Angle="45" CenterX="30" CenterY="30"/>
</TransformGroup>
</Rectangle.RenderTransform>

要在其中心旋转矩形,我必须将 CenterX 和 Y 设置为矩形大小的一半。有没有办法在标记中做到这一点?

像 CenterX="{Binding Path=Width\2}"之类的东西?

最佳答案

您可以在 RenderTrasformOrigin 本身上设置 Rectangle 属性:

<Rectangle Height="60" HorizontalAlignment="Left" Margin="50,100,0,0" Name="rectangle2" 
Stroke="Black" VerticalAlignment="Top" Width="60"
RenderTrasformOrigin="0.5,0.5">
<Rectangle.RenderTransform>
<TransformGroup>
<RotateTransform Angle="45" />
</TransformGroup>
</Rectangle.RenderTransform>

关于WPF RotateTransform 关于偏移量的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5292754/

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