简体   繁体   中英

how to lock horizontal scrolling when parent listbox vertical scrolling in WP7

My listbox contains custom templates. Every template can dragable horizontally using Toolkit GestureService.

My goal is when scrolling listbox, items cannot dragable.

I need to handle parent listbox scrolling?

How to handle this?

Use the ScrollViewer.VerticalScrollBarVisibility property to disable the scrollbar inside a ListBox control like this:

<ListBox ScrollViewer.VerticalScrollBarVisibility="Disabled" ... >
    ...
</ListBox>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM