Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="App"/> class.
        /// </summary>
        /// <param name="containerService">
        /// The container Service.
        /// </param>
        public App(IContainerService containerService)
        {
            try
            {
                this.InitializeComponent();

                containerService.Init();
                containerService.RunAppLaunch();
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }
        }