Can application continue tracking touch pointer when ScrollViewer has captured it?
When user starts scrolling (touch and drag more than 15 px) scrolled content receives PointerCaptureLost and then I 'can find a way how to track the pointer.
I've tried item.PointerMoved and Window.Current.CoreWindow.PointerMoved and item.AddHandler(ManipulationDeltaEvent and others). But without success.
Does winRT provide any other API's to track pointers after PointerCaptureLost? Before
PointerCaptureLost I can disable/enable scroll from PointerPressed but at this moment I do not want to do it since I actually need the horizontal scrolling by scrollviewer and want to handle vertical pointer move events in my app.
Alternatively maybe it is possible to prevent PointerCaptureLost for vertical pointer move (since want only horizontal panel scrolling)?