using ComeCapture; using Common.system; using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading; using System.Windows; using System.Windows.Threading; using XHWK.Model; namespace XHWK.WKTool { public partial class APP : Application { #region 全局变量 /// /// 用户信息 /// public static Model_UserInfo UserInfo=null; /// /// 接口返回消息 /// public static string ServerMsg=string.Empty; /// /// 微课模型 /// public static Model_WKData WKData = null; /// /// 主页面 /// public static XHMicroLessonSystemWindow W_XHMicroLessonSystemWindow = null; /// /// 录屏工具 /// public static FFMpeg FFmpeg = new FFMpeg(); /// /// 开始录像 /// public static CountdownWindow W_CountdownWindow = null; /// /// 录像工具栏 /// public static ScreenRecordingToolbarWindow W_ScreenRecordingToolbarWindow = null; /// /// 登陆 /// public static LoginWindow W_LoginWindow = null; /// /// 截图 /// public static JieTuWindow W_JieTuWindow = null; /// /// 批注 /// public static PracticeWindow W_PracticeWindow = null; /// /// 登陆状态 false 未登录 true已登陆 /// public static bool IsLoginType = false; public static readonly Model_Page pageData = new Model.Model_Page(); /// /// 防止图片地址重复 /// public static long num = 9999; /// /// 导入图片路径 /// public static string[] Paths = new string[] { }; /// /// 截图图片路径 /// public static string[] JPaths = new string[999]; public static string ImgPath = string.Empty; #endregion [STAThread] private static void Main() { // 定义Application对象作为整个应用程序入口 Application app = new Application(); WKData = new Model_WKData(); //app.DispatcherUnhandledException += MyApp_DispatcherUnhandledException; CreateAMicroLessonWindow win = new CreateAMicroLessonWindow(); app.Run(win); //LogHelper.WriteInfoLog("启动项目"); StopSameProcess(); } private static void StopSameProcess() { Process current = Process.GetCurrentProcess(); Process[] processList = Process.GetProcesses(); foreach (Process process in processList) { if (process.ProcessName.ToUpper() == "XHSCHOOL") { if (process.Id != current.Id) //忽略当前进程 { try { process.Kill(); //结束进程 } catch (Exception) { } } } } } private void MyApp_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) { LogHelper.WriteErrLog("未标示错误:" + e.Exception.Message, e.Exception); MessageBox.Show("程序异常." + Environment.NewLine + e.Exception.Message); e.Handled = true; } #region 内存处理 -创建人:赵耀 -创建时间:2020年8月12日 /// /// 内存释放压缩 /// /// protected override void OnStartup(StartupEventArgs e) { //private LierdaCracker cracker = new LierdaCracker(); //cracker.Cracker(5000);//间隔时间 //base.OnStartup(e); new Thread(o => { while (true) { try { //FreeMemoryHelper.SetDate(); FreeMemoryHelper.ReallocateMemory(); Thread.Sleep(20000);//暂定每20秒释放一次 } catch (Exception ex) { LogHelper.WriteErrLog("【释放内存(MyApp)" + ex.Message, ex); } } }).Start(); } #endregion 内存处理 -创建人:赵耀 -创建时间:2020年8月12日 } }