Beispiel #1
0
        private void ShowCheckedGeoPointEdt(enumGeoPointType geodottype)
        {
            CMFrmCheckedGeoPointEdt mform = new CMFrmCheckedGeoPointEdt(APInf, geodottype, APInf.KTA.Lat, APInf.KTA.Lng, APInf.AirfieldHeight);

            mform.ShowDialog();

            if (mform.Dialog_Result)
            {
                StartCheck(mform.CheckedGeoPoint);
            }
        }
Beispiel #2
0
        private void ShowCheckedGeoPointEdt(enumGeoPointType geodottype, double lat, double lng, double height = 0)
        {
            CMFrmCheckedGeoPointEdt mform = new CMFrmCheckedGeoPointEdt(APInf, geodottype, lat, lng, height);

            mform.ShowDialog();

            if (mform.Dialog_Result)
            {
                StartCheck(mform.CheckedGeoPoint);
            }
        }