How to scroll listview on a touch screen

I have an application with ListView. In desktop mode, I have no problem, but when I use this touch screen application, there is a problem with vertical scrolling ListView. In fact, when I touch the screen above mine ListView, I select the items in this list, but when I move my finger up and down, instead of scrolling through the list, the only thing that happens is the selection of the item under my finger (change the selection).

How can I solve this problem?

+5
source share
1 answer

You are probably using .Net infrastructure less than or equal to 3.5. If you can, go to step 4 and take a look at the property ScrollViewer.PanningMode, because that is what you are looking for.

+3
source

All Articles