コード例 #1
0
 private void gpscontrol_GPSDataEvent(object sender, GpsDataEventArgs e)
 {
     if (isAdjust)
     {
         return;
     }
     if (e.Gsa.FormatFixType() != GSA.FixType.Fix_not)
     {
         string strdate = e.Rmc.FormatDate();
         string strtime = e.Gga.FormatTime();
         //strdate = "2012-07-25";
         if (Utility.UpdateTime(strdate, strtime))
         {
             isAdjust = true;
             AddToMemo("重新校准了系统时间");
             RefreshTime();
             GValue.SoundAlarmA();
         }
     }
 }