Exemple #1
0
        /// <summary>
        ///     Sets a reference to the flight app launcher object.
        /// </summary>
        public void SetFlightAppLauncher(IFlightAppLauncher flightAppLauncher)
        {
            if (flightAppLauncher == null)
            {
                return;
            }

            this.flightAppLauncher = flightAppLauncher;

            // create section controls
            CreateSectionControls(this.flightAppLauncher.GetStockSections());
            CreateSectionControls(this.flightAppLauncher.GetCustomSections());
        }
        /// <summary>
        ///     Sets a reference to the flight app launcher object.
        /// </summary>
        public void SetFlightAppLauncher(IFlightAppLauncher flightAppLauncher)
        {
            if (flightAppLauncher == null)
            {
                return;
            }

            m_FlightAppLauncher = flightAppLauncher;

            // create section controls
            CreateSectionControls(m_FlightAppLauncher.GetStockSections());
            CreateSectionControls(m_FlightAppLauncher.GetCustomSections());
        }