Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的列表框包含自定义模板。每个模板都可以使用 Toolkit GestureService 水平拖动。
我的目标是滚动列表框时,项目不能拖动。
我需要处理父列表框滚动吗?
如何处理?
使用该ScrollViewer.VerticalScrollBarVisibility属性来禁用控件内的滚动条,ListBox如下所示:
ScrollViewer.VerticalScrollBarVisibility
ListBox
<ListBox ScrollViewer.VerticalScrollBarVisibility="Disabled" ... > ... </ListBox>