Threading - make sure the thread finishes
问题 SOLVED: http://msdn.microsoft.com/en-us/library/ff431782(v=VS.92).aspx I have the following class that will give me the current location in WP7: public class Position { private GeoCoordinateWatcher watcher = null; public GeoCoordinate CurrentLocation { get; set; } public Position() { ObtainCurrentLocation(); } private void ObtainCurrentLocation() { watcher = new GeoCoordinateWatcher(GeoPositionAccuracy.Default); watcher.PositionChanged += new EventHandler<GeoPositionChangedEventArgs