private void DisplayLocationSelector()
        {
            LocationSelect locationSelector = new LocationSelect(false);

            locationSelector.ShowDialog();
            textBoxLatitude.Text  = Globals.latitute.ToString(CultureInfo.InvariantCulture);
            textBoxLongitude.Text = Globals.longitude.ToString(CultureInfo.InvariantCulture);
        }
Example #2
0
        private async Task displayLocationSelector()
        {
            LocationSelect locationSelector = new LocationSelect(false);

            locationSelector.ShowDialog();
            textBox3.Text = Globals.latitute.ToString();
            textBox4.Text = Globals.longitude.ToString();
            textBox5.Text = Globals.altitude.ToString();
        }
Example #3
0
 private async Task displayLocationSelector()
 {
     LocationSelect locationSelector = new LocationSelect();
     locationSelector.ShowDialog();
     textBox3.Text = Globals.latitute.ToString();
     textBox4.Text = Globals.longitude.ToString();
     textBox5.Text = Globals.altitude.ToString();
 }
Example #4
0
 private void DisplayLocationSelector()
 {
     LocationSelect locationSelector = new LocationSelect(false);
     locationSelector.ShowDialog();
     textBox3.Text = Globals.latitute.ToString(CultureInfo.InvariantCulture);
     textBox4.Text = Globals.longitude.ToString(CultureInfo.InvariantCulture);
     textBox5.Text = Globals.altitude.ToString(CultureInfo.InvariantCulture);
 }