我的地理定位器有问题,当我将 MovementThreshold 设置为 1 时,一切正常,但如果我将其设置为 0,那么在侦听位置事件更改时会出现 Abort 错误
Geolocator Locator = new Geolocator();
Locator.DesiredAccuracy = PositionAccuracy.High;
Locator.MovementThreshold = 0;
Locator.PositionChanged += Locator_PositionChanged; // Error occours here but does not occour if Threshold >= 1
关于为什么的任何想法?