Esempio n. 1
0
        void gLocationSystem_OnNewGPoint(object o, GPointEventArgs e)
        {
            if (e.Point.IsValid)
            {
                gPoints.Add(new GPoint(e.Point.Longitude, e.Point.Latitude, gPoints.Count + 1));

                PointsConsole.Text        += Environment.NewLine + e.Point.ToString();
                CurrentPointTextBlock.Text = new GPoint(e.Point.Longitude, e.Point.Latitude, 0).ToString();
                //ApplicationTitle.Text = e.Point.
            }
        }
Esempio n. 2
0
        void gLocationSystem_OnNewGPoint(object o, GPointEventArgs e)
        {
            if (e.Point.IsValid)
            {
                gPoints.Add(new GPoint(e.Point.Longitude, e.Point.Latitude, gPoints.Count + 1));

                PointsConsole.Text += Environment.NewLine + e.Point.ToString();
                CurrentPointTextBlock.Text = new GPoint(e.Point.Longitude, e.Point.Latitude, 0).ToString();
                //ApplicationTitle.Text = e.Point.
            }
        }