I have a WPF application that is designed to be used on a touch screen.
I use a list view with a set of images, and the selected image is displayed in full-size image control
When on the touch screen I can select images just by tapping the image in the list item, however I have a little problem.
When the user touches the screen, often the user's fingers move slightly while still in contact with the screen, which leads to viewing a list that interprets the touch as a scroll request.
This means that the desired selection actually occurs only when the user is careful or has no movement when in contact with the screen.
I assume that this is a problem with a threshold in which it defines the scroll action, but I cannot find a solution to this problem.
Can anyone help?
c # wpf visual-studio-2015 touch
Steven wood
source share