xaml - Selecting two items from different lists at the same time via multi-touch in WP8. -
How do I choose two items from two different long list selector controls at the same time? I am developing an application that requires selecting one item from two different lists at the same time.
& lt; Phone: Longlist Selector x: name = "Input list" item source = "{binding input list}" & gt;
If you have multiple controls and You want to handle multi-touch events, you have to do it manually. Use Touch.FrameReported to remove touch points, find out which controls are under each touch point and then work on it. Check out this example here:.
Comments
Post a Comment