Program.cs 4.5 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. Console.WriteLine("Test");
  48. //创建启动对象
  49. System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
  50. // 设置运行文件
  51. startInfo.FileName = Application.ExecutablePath;
  52. //设置启动动作,确保以管理员身份运行
  53. startInfo.Verb = "runas";
  54. //如果不是管理员,则启动UAC
  55. System.Diagnostics.Process.Start(startInfo);
  56. }
  57. #endregion
  58. }
  59. catch (Exception ex)
  60. {
  61. string str = GetExceptionMsg(ex, string.Empty);
  62. MessageBox.Show(str, "系统错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
  63. }
  64. }
  65. //处理线程的异常
  66. static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
  67. {
  68. string str = GetExceptionMsg(e.Exception, e.ToString());
  69. LogManager.DoLog(e.Exception.Message + " " + e.Exception.TargetSite + " " + e.Exception.StackTrace);
  70. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  71. }
  72. //未处理的异常统一通过这里返回
  73. static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
  74. {
  75. string str = GetExceptionMsg(e.ExceptionObject as Exception, e.ToString());
  76. LogManager.DoLog(str);
  77. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  78. }
  79. /// <summary>7
  80. /// 生成自定义异常消息
  81. /// </summary>
  82. /// <param name="ex">异常对象</param>
  83. /// <param name="backStr">备用异常消息:当ex为null时有效</param>
  84. /// <returns>异常字符串文本</returns>
  85. static string GetExceptionMsg(Exception ex, string backStr)
  86. {
  87. StringBuilder sb = new StringBuilder();
  88. if (ex != null)
  89. {
  90. sb.AppendLine(ex.Message);
  91. //sb.AppendLine("【异常方法】:" + ex.TargetSite);
  92. }
  93. else { sb.AppendLine("【未处理异常】:" + backStr); }
  94. return sb.ToString();
  95. }
  96. }
  97. }