コード例 #1
0
ファイル: TimerViewModel.cs プロジェクト: astondg/track-timer
        public void UnloadGps()
        {
            if (lapTimer == null)
            {
                return;
            }

            lapTimer.GeolocatorStatusChanged      -= lapTimer_GeolocatorStatusChanged;
            lapTimer.GeolocatorUnrecoverableError -= lapTimer_GeolocatorUnrecoverableError;
            lapTimer.Dispose();
            lapTimer = null;
        }