Interaction logic for PopUpMap.xaml
Inheritance: PopUpWindow
Exemple #1
0
        //shows the pop for a list of airports
        public static void ShowPopUp(List <Airport> airports)
        {
            PopUpMap window = new PopUpMap(airports);

            window.ShowDialog();
        }
Exemple #2
0
        //shows the pop up for an airliner
        public static void ShowPopUp(FleetAirliner airliner)
        {
            PopUpMap window = new PopUpMap(airliner);

            window.ShowDialog();
        }
Exemple #3
0
        //shows the pop up for some routes
        public static void ShowPopUp(List <Route> routes)
        {
            PopUpMap window = new PopUpMap(routes);

            window.ShowDialog();
        }
Exemple #4
0
        //shows the pop up for an airport
        public static void ShowPopUp(Airport airport)
        {
            PopUpMap window = new PopUpMap(airport);

            window.ShowDialog();
        }
 //shows the pop for a list of airports
 public static void ShowPopUp(List<Airport> airports)
 {
     PopUpMap window = new PopUpMap(airports);
     window.ShowDialog();
 }
 //shows the pop up for some routes
 public static void ShowPopUp(List<Route> routes)
 {
     PopUpMap window = new PopUpMap(routes);
     window.ShowDialog();
 }
 //shows the pop up for an airliner
 public static void ShowPopUp(FleetAirliner airliner)
 {
     PopUpMap window = new PopUpMap(airliner);
     window.ShowDialog();
 }
 //shows the pop up for an airport
 public static void ShowPopUp(Airport airport)
 {
     PopUpMap window = new PopUpMap(airport);
     window.ShowDialog();
 }