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;
        }