Nick
Nick

Reputation: 10499

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?

Upvotes: 6

Views: 4383

Answers (1)

gliderkite
gliderkite

Reputation: 8928

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.

Upvotes: 6

Related Questions