wpfrotatetransform——如何让我的控制位置恢复正常?
基本上,我旋转了一个项目:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加一个 TranslateTransform:
Add a TranslateTransform: