示例#1
0
        // User selects a satellite
        private void Sats_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            int TLE_pressed = Sats.IndexFromPoint(e.Location);

            Values.TLESat = TLE_handling.Get_TLE(TLE_pressed);
            Executions.Sat_Update(Sat_Name, Launch_Year, Catalog_Number);
        }
示例#2
0
 // Sets custom TLE given by user
 private void CustomSatUpdate_Click(object sender, EventArgs e)
 {
     string[] TLE = CustomTLE.Lines;
     Values.TLESat = TLE;
     Executions.Sat_Update(Sat_Name, Launch_Year, Catalog_Number);
 }