Program.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. using System;
  2. using System.IO;
  3. using System.Security.Principal;
  4. using System.Text;
  5. using System.Windows.Forms;
  6. using UAS_MES.PublicMethod;
  7. namespace UAS_MES
  8. {
  9. static class Program
  10. {
  11. /// <summary>
  12. /// 应用程序的主入口点
  13. /// </summary>
  14. [STAThread]
  15. static void Main()
  16. {
  17. try
  18. {
  19. WindowsIdentity identity = WindowsIdentity.GetCurrent();
  20. WindowsPrincipal principal = new WindowsPrincipal(identity);
  21. //设置应用程序处理异常方式:ThreadException处理
  22. Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
  23. //处理UI线程异常
  24. Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
  25. //处理非UI线程异常
  26. AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
  27. #region 应用程序的主入口点
  28. Application.EnableVisualStyles();
  29. Application.SetCompatibleTextRenderingDefault(false);
  30. //处理全局事件
  31. GlobalEventsHandler g = new GlobalEventsHandler();
  32. //添加全局事件的监听
  33. Application.AddMessageFilter(g);
  34. //启用异常记录日志的操作
  35. string sysdisc = Environment.GetEnvironmentVariable("windir").Substring(0, 1);
  36. //创建标签缓存的文件夹
  37. if (!Directory.Exists(ftpOperater.DownLoadTo))
  38. Directory.CreateDirectory(ftpOperater.DownLoadTo);
  39. if (!Directory.Exists(sysdisc + @":\Log"))
  40. Directory.CreateDirectory(sysdisc + @":\Log");
  41. FileStream fs = new FileStream(sysdisc + @":\Log\" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt", FileMode.OpenOrCreate, FileAccess.ReadWrite);
  42. fs.Close();
  43. if (principal.IsInRole(WindowsBuiltInRole.Administrator))
  44. Application.Run(new Login());
  45. else
  46. {
  47. //创建启动对象
  48. System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
  49. // 设置运行文件
  50. startInfo.FileName = Application.ExecutablePath;
  51. //设置启动动作,确保以管理员身份运行
  52. startInfo.Verb = "runas";
  53. //如果不是管理员,则启动UAC
  54. System.Diagnostics.Process.Start(startInfo);
  55. }
  56. #endregion
  57. }
  58. catch (Exception ex)
  59. {
  60. string str = GetExceptionMsg(ex, string.Empty);
  61. MessageBox.Show(str, "系统错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
  62. }
  63. }
  64. //处理线程的异常
  65. static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
  66. {
  67. string str = GetExceptionMsg(e.Exception, e.ToString());
  68. LogManager.DoLog(e.Exception.Message + " " + e.Exception.TargetSite + " " + e.Exception.StackTrace);
  69. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  70. }
  71. //未处理的异常统一通过这里返回
  72. static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
  73. {
  74. string str = GetExceptionMsg(e.ExceptionObject as Exception, e.ToString());
  75. LogManager.DoLog(str);
  76. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  77. }
  78. /// <summary>7
  79. /// 生成自定义异常消息
  80. /// </summary>
  81. /// <param name="ex">异常对象</param>
  82. /// <param name="backStr">备用异常消息:当ex为null时有效</param>
  83. /// <returns>异常字符串文本</returns>
  84. static string GetExceptionMsg(Exception ex, string backStr)
  85. {
  86. StringBuilder sb = new StringBuilder();
  87. if (ex != null)
  88. {
  89. sb.AppendLine(ex.Message);
  90. //sb.AppendLine("【异常方法】:" + ex.TargetSite);
  91. }
  92. else { sb.AppendLine("【未处理异常】:" + backStr); }
  93. return sb.ToString();
  94. }
  95. }
  96. }