如何在 silverlight 中调整控件大小
我正在开发 Silverlight 应用程序,我的问题是这样的:我有一个 StackPanel 在 stackpanel 中我有一个 ViewBox。在视图框中,我添加图像并将它们旋转 90 和/或 -90 度。
旋转时,我的图像会脱离视图框。我该如何解决这个问题?
I am working on a Silverlight application and my problem is like this: I have a StackPanel
and inside the stackpanel I have a ViewBox
. Inside the viewbox I am adding images and rotating them 90 and/or -90 degrees.
When rotated, my images go out of the viewbox. How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 StackPanel 以外的其他东西,它不会调整大小。
Use something other than StackPanel, it doesn't resize.
Silverlight Toolkit 中有一个名为
LayoutTransformer
的控件可以解决此问题。它确保当您更改变换时,控件的边界位于 LayoutTransformer 边界内。您可以在 Silverlight Toolkit 演示中看到这一点。只需将左侧的树向下滚动到“布局”部分即可。
There's a control in the Silverlight Toolkit that addresses this problem called the
LayoutTransformer
. It ensures that when you change the transform, the bounds of the control are within theLayoutTransformer
bounds.You can see this at work in the Silverlight Toolkit demo. Just scroll down the tree on the left to the Layout section.