コード例 #1
0
ファイル: App.xaml.cs プロジェクト: rafysanchez/Apollo
        /// <summary>
        /// Loads the kernel.
        /// </summary>
        private void LoadKernel()
        {
            var bootstrapper = new KernelBootstrapper(
                m_ShutdownEvent,
                LoadUserInterface);

            // Load the core system. This will automatically
            // run the Prism bootstrapper which will then
            // load up the UI and display it.
            bootstrapper.Load();
        }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: pvandervelde/Apollo
        /// <summary>
        /// Loads the kernel.
        /// </summary>
        private void LoadKernel()
        {
            var bootstrapper = new KernelBootstrapper(
                m_ShutdownEvent,
                LoadUserInterface);

            // Load the core system. This will automatically
            // run the Prism bootstrapper which will then
            // load up the UI and display it.
            bootstrapper.Load();
        }