Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to scroll ListView in a touchscreen

I have an application with a ListView. In desktop mode I have no problems, but when I use this application with a touchscreen there is a problem related to the ListView vertical scrolling. In fact when I touch the screen over my ListView I select on of the items of this list, but when I move my finger up and down, instead of scroll my list the only thing that happens is the selection of the item under my finger (selection changes).

How can I solve this problem?

like image 684
Nick Avatar asked Mar 28 '13 08:03

Nick


1 Answers

Probably you're using a .Net framework less than or equal to the 3.5. If you can, skip to 4 and take a look to the property ScrollViewer.PanningMode because it is what you're looking for.

like image 180
gliderkite Avatar answered Oct 14 '22 13:10

gliderkite