コード例 #1
0
ファイル: Program.cs プロジェクト: Antares007/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();
        }
コード例 #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();
        }