ListView ManipulationCompleted event doesn't work on phone
问题 I have this code in a Windows 10 UWP application: MyListView.ManipulationMode = ManipulationModes.TranslateX; MyListView.ManipulationStarted += (s, e) => x1 = (int)e.Position.X; MyListView.ManipulationCompleted += (s, e) => { x2 = (int)e.Position.X; if (x1 > x2) { DataController.PaneOpen(false); }; if (x1 < x2) { DataController.PaneOpen(true); }; }; The ManipulationCompleted event doesn't work on phone in ListView . The code inside the handler never gets called. It's working fine on PC, but