如何不仅移动控件的位置,而且更改其轴?
我正在 Silverlight、Windows Mobile 中制作电话应用程序。
我可以更改按钮或标签等的位置。这很好。
然而,有谁知道我如何改变实际的轴,如旋转。例如: |进入 __ ?
这么说吧: | ....是一个按钮什么的。我可以轻松地在屏幕上移动它。
但我怎样才能做到这一点?并将旋转更改为 __ ?
I am making a phone application in Silverlight, Windows Mobile.
I am able to change the location of a button, or a label etc. That's fine and all good.
However, does anyone know how I can change the actual axis, as in, rotation. For example: | in to __ ?
Let's say that: | .... is a button or something. I can move it around the screen with ease.
But how do I make it from | and change the rotation to __ ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 XAML 中使用 RotateTransform 或作为代码隐藏中的方法。
这是链接页面上列出的示例:
希望这有帮助
编辑:代码隐藏示例执行与 XAML 完全相同的操作:
You can use RotateTransform in your XAML or as a method in the code-behind.
This is the example that is listed on the linked page:
Hope this helps
Edit: Code behind example doing exactly the same thing as XAML: