123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using DevExpress.LookAndFeel;
- using DevExpress.XtraEditors;
- using Serilog;
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using System.Threading;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace CG
- {
- internal static class Program
- {
- static Program()
- {
- AppDomain.CurrentDomain.SetData("PRIVATE_BINPATH", "AddIns;");
- var m = typeof(AppDomainSetup).GetMethod("UpdateContextProperty", BindingFlags.NonPublic | BindingFlags.Static);
- var funsion = typeof(AppDomain).GetMethod("GetFusionContext", BindingFlags.NonPublic | BindingFlags.Instance);
- m.Invoke(null, new object[] { funsion.Invoke(AppDomain.CurrentDomain, null), "PRIVATE_BINPATH", "AddIns;" });
- AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
- {
- var args = e.ExceptionObject as Exception;
- XtraMessageBox.Show("出现未处理的异常,程序即将退出!");
- Serilog.Log.Error("出现未处理的异常,程序即将退出!", args);
- };
- Application.ThreadException += (sender, e) =>
- {
- XtraMessageBox.Show(e.Exception.Message);
- Serilog.Log.Error("未处理的线程异常", e.Exception);
- };
- }
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Serilog.Log.Logger = new Serilog.LoggerConfiguration()
- .WriteTo.Console(outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj}{NewLine}{Exception}")
- .WriteTo.Logger(p => p.Filter.ByIncludingOnly(e => e.Level == Serilog.Events.LogEventLevel.Information)
- .WriteTo.File("Logs\\Info\\.log", rollingInterval: Serilog.RollingInterval.Day))
- .WriteTo.Logger(p => p.Filter.ByIncludingOnly(e => e.Level == Serilog.Events.LogEventLevel.Warning)
- .WriteTo.File("Logs\\Warning\\.log", rollingInterval: Serilog.RollingInterval.Day))
- .WriteTo.Logger(p => p.Filter.ByIncludingOnly(e => e.Level == Serilog.Events.LogEventLevel.Error)
- .WriteTo.File("Logs\\Error\\.log", rollingInterval: Serilog.RollingInterval.Day))
- .CreateLogger();
- WindowsFormsSettings.AllowDpiScale = true;
- WindowsFormsSettings.AllowHoverAnimation = DevExpress.Utils.DefaultBoolean.True;
- WindowsFormsSettings.AllowDefaultSvgImages = DevExpress.Utils.DefaultBoolean.True;
- WindowsFormsSettings.AllowRoundedWindowCorners = DevExpress.Utils.DefaultBoolean.True;
- WindowsFormsSettings.AnimationMode = AnimationMode.EnableAll;
- WindowsFormsSettings.BackgroundSkinningMode = BackgroundSkinningMode.AllColors;
- WindowsFormsSettings.DefaultAllowHtmlDraw = true;
- WindowsFormsSettings.DefaultLookAndFeel.SetSkinStyle(SkinStyle.WXICompact);
- WindowsFormsSettings.DefaultFont = new System.Drawing.Font("微软雅黑", 10f);
- WindowsFormsSettings.SetPerMonitorDpiAware();
- if (Debugger.IsAttached)
- {
- //DevExpress23.2以上版本查看未本地化的资源
- //DevExpress.Utils.Localization.XtraLocalizer.EnableTraceSource();
- }
- string screenTitle = ConfigurationManager.AppSettings["SystemName"];
- string screenCompany = ConfigurationManager.AppSettings["Company"];
- DxHelper.WaitHelper.SetSplashTips("Tips.txt");
- ChsLocalizer.UseChs();
- DxHelper.WaitHelper.ShowSplashScreen(screenTitle, screenCompany);
- DxHelper.WaitHelper.UpdateSplashMessage("正在加载程序资源文件...");
- MainForm mainForm = new MainForm() { Text = screenTitle };
- Thread.Sleep(500);
- DxHelper.WaitHelper.UpdateSplashMessage("正在初始化...");
- Thread.Sleep(1000);
- System.Windows.Forms.Application.Run(mainForm);
- }
- }
- }
|