예제 #1
0
        public static void Main()
        {
            Thread.CurrentThread.Name = "MainThread";
            var app = new InRetail.Shell.App();
            app.InitializeComponent();

            Bootstrapper.Bootstrap();

            app.ShutdownMode = ShutdownMode.OnMainWindowClose;
            app.Run();
        }
예제 #2
0
파일: Program.cs 프로젝트: zaieda/InRetail
        public static void Main()
        {
            Thread.CurrentThread.Name = "MainThread";
            var app = new InRetail.Shell.App();

            app.InitializeComponent();

            Bootstrapper.Bootstrap();

            app.ShutdownMode = ShutdownMode.OnMainWindowClose;
            app.Run();
        }