|
- using HKCardOUT.ViewModels;
- using Stylet;
- using StyletIoC;
- using System;
- using System.Windows.Threading;
- using System.Windows;
- using Microsoft.Extensions.Configuration;
- using HKCardOUT.Helper;
- using HKCardOUT.QuartzUtil.Job;
- using HKCardOUT.QuartzUtil;
- using HKCardOUT.Logic;
- using HKCardOUT.Logic.Service;
- using ImTools;
-
- namespace HKCardOUT
- {
- public class Bootstrapper : Bootstrapper<RootViewModel>
- {
- /// <summary>
- /// 程序启动
- /// </summary>
- protected override void OnStart()
- {
- HKLog.HKLogImport.Init("HKCardOUT");
- }
-
- protected override void ConfigureIoC(IStyletIoCBuilder builder)
- {
- builder.Bind<HKCore>().ToSelf();
- }
-
- /// <summary>
- /// 初始化系统相关参数配置
- /// </summary>
- protected override void Configure()
- {
- var configer = (new ConfigurationBuilder()).AddJsonFile("options.json").Build();
- DataBus.ConnectionString = configer.GetConnectionString("Sqlite");
- DataBus.Cron = configer["Cron"];
- DataBus.SaasRoute = configer["SaasRoute"];
- DataBus.StoreId = configer["StoreId"];
- DbContext.InitTable();
- RemoteService.PullShopInfo();
- base.Configure();
- }
-
- /// <summary>
- /// 初始化VM
- /// </summary>
- protected override void Launch()
- {
- base.Launch();
- }
-
- /// <summary>
- /// 加载首页VM
- /// </summary>
- /// <param name="rootViewModel"></param>
- protected override void DisplayRootView(object rootViewModel)
- {
- base.DisplayRootView(rootViewModel);
- }
-
- /// <summary>
- ///VM加载完毕
- /// </summary>
- protected override void OnLaunch()
- {
- QuartzCoreFactory.QuartzCore().AddJob<QuartzJob>(new QuartzMap
- {
- JobDetail = "定时推送订单",
- Cron = DataBus.Cron,
- JobName = "订单",
- JobGroup = "订单"
- });
- base.OnLaunch();
- }
-
- /// <summary>
- /// 退出
- /// </summary>
- /// <param name="e"></param>
- protected override void OnExit(ExitEventArgs e)
- {
- base.OnExit(e);
- }
-
- /// <summary>
- /// 全局异常捕获
- /// </summary>
- /// <param name="e"></param>
- protected override void OnUnhandledException(DispatcherUnhandledExceptionEventArgs e)
- {
- HKLog.HKLogImport.WriteError(e.Exception.InnerException != null ? e.Exception.InnerException : e.Exception);
- GC.Collect();
- }
- }
- }
|