예제 #1
0
파일: Program.cs 프로젝트: vishalishere/CBR
        public static void Main(string[] args)
        {
            App app = new App();

            //register the single instance application
            WpfSingleInstance.Make("C.B.R.", app);

            ISplashScreen splashScreen = SplashScreenManager.CreateSplashScreen(typeof(SplashContent));

            SplashScreenManager.Splash.Message = "Starting...";

            app.InitializeComponent();
            app.Run();
        }