Rolodex.Silverlight.Bootstrapper.CreateShell C# (CSharp) Метод

CreateShell() защищенный Метод

protected CreateShell ( ) : DependencyObject
Результат System.Windows.DependencyObject
        protected override DependencyObject CreateShell()
        {
            Shell shell = Container.Resolve<Shell>();
#if SILVERLIGHT
            Application.Current.RootVisual = shell;
#else
            shell.Show();
#endif
            return shell;
        }