XAML 中的缩放问题
所以,问题是:如果我有一个带有一些元素的 StackPanel,并且其中一个元素在覆盖附近的元素时会使用缩放进行变换,但我需要将元素滑动到侧面,以满足舒适缩放的需要。
So, the problem is: if I have for example StackPanel with some elements and one of this elements transforms with Zoom if overlays the near elements, but I need to slide elements to the sides as much as it needs for comfort zooming..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚“使用缩放进行变换”是什么意思,但如果您要在元素的 RenderTransform 属性上设置 ScaleTransform,请尝试使用 LayoutTransform 属性。 LayoutTransform 在布局通道之前应用,而 RenderTransform 在布局通道之后但渲染通道之前应用。
It is unclear what you mean by "transforms with Zoom", but if you are setting a ScaleTransform on an element's RenderTransform property, then try using the LayoutTransform property instead. LayoutTransform is applied before the layout pass, whereas RenderTransform is applied after the layout pass but before the render pass.