wpfrotatetransform——如何让我的控制位置恢复正常?

发布于 2024-10-31 00:16:42 字数 298 浏览 1 评论 0原文

基本上,我旋转了一个项目:

<Button Content="HelloWorld">
    <Button.RenderTransform>
        <RotateTransform Angle="270" />
    </Button.RenderTransform>
</Button>

如何获得它以使其向下移动。现在,自从我围绕 0,0 点旋转它后,它就直立起来了。我需要它,以便 0,0 点向下移动,以便顶部位于原始顶部所在的位置。

Basically, I rotated an item:

<Button Content="HelloWorld">
    <Button.RenderTransform>
        <RotateTransform Angle="270" />
    </Button.RenderTransform>
</Button>

How do I get it so that it moves down. Right now it sticks straight up since I rotated it around the 0,0 point. I need it so that the 0,0 point moves down so that the top is where the original top was.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

楠木可依 2024-11-07 00:16:42

添加一个 TranslateTransform:

<Button x:Name="MyButton" Content="HelloWorld">
    <Button.RenderTransform>
        <TransformGroup>
            <RotateTransform Angle="270" />
            <TranslateTransform Y="{Binding ActualWidth, ElementName=MyButton}" />
        </TransformGroup>
    </Button.RenderTransform>
</Button>

Add a TranslateTransform:

<Button x:Name="MyButton" Content="HelloWorld">
    <Button.RenderTransform>
        <TransformGroup>
            <RotateTransform Angle="270" />
            <TranslateTransform Y="{Binding ActualWidth, ElementName=MyButton}" />
        </TransformGroup>
    </Button.RenderTransform>
</Button>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文