ServiceInsight.Shell.AboutView.AsSplashScreen C# (CSharp) Méthode

AsSplashScreen() public static méthode

public static AsSplashScreen ( ) : Window
Résultat System.Windows.Window
        public static Window AsSplashScreen()
        {
            var vm = AboutViewModel.AsSplashScreenModel();
            var view = new AboutView { DataContext = vm, WindowStyle = WindowStyle.None };

            return view;
        }
    }