wp7,如何在 ScrollViewer 中阻止滚动
我不会在 ScrollViewer 中移动 UIElements。我有这样的想法:
<ScrollViewer x:Name="scroll">
<Canvas x:Name="sheet" Width="480" Height="10000">
<Rectangle Canvas.Left="51" Canvas.Top="116" Height="114" Width="337"/>
</Canvas>
</ScrollViewer>
我使用 ManipulationDelta 事件移动矩形。但是,当我这样做时,scrollViewer 也会滚动。
如何锁定ScrollViewer的滚动?
该代码根本没有帮助。
ScrollBarVisibility.Disabled;
我花了三天时间寻找解决方案,但什么也没找到。
I wont to move UIElements in ScrollViewer. I have somthink like this:
<ScrollViewer x:Name="scroll">
<Canvas x:Name="sheet" Width="480" Height="10000">
<Rectangle Canvas.Left="51" Canvas.Top="116" Height="114" Width="337"/>
</Canvas>
</ScrollViewer>
I move the rectangle using ManipulationDelta event. However when I do it the scrollViewer scrolls as well.
How to lock scrolling of ScrollViewer?
that code doesn't help at all.
ScrollBarVisibility.Disabled;
I've lost 3 days to find solution and I can't find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是为了处理全景/枢轴上的手势冲突。
防止枢轴或全景控件滚动
This just in on dealing with gesture conflict on pano / pivot.
Preventing the Pivot or Panorama controls from scrolling