Program.cs 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. using System;
  2. using System.Text;
  3. using System.Windows.Forms;
  4. using System.Security.Principal;
  5. using UAS_LabelMachine.PublicMethod;
  6. using UAS_Labeling.PublicMethod;
  7. namespace UAS_LabelMachine
  8. {
  9. static class Program
  10. {
  11. /// <summary>
  12. /// 应用程序的主入口点。
  13. /// </summary>
  14. [STAThread]
  15. static void Main(string[] Args)
  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. if (principal.IsInRole(WindowsBuiltInRole.Administrator))
  36. {
  37. Application.Run(new Login());
  38. }
  39. else
  40. {
  41. //创建启动对象
  42. System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
  43. // 设置运行文件
  44. startInfo.FileName = Application.ExecutablePath;
  45. //设置启动动作,确保以管理员身份运行
  46. startInfo.Verb = "runas";
  47. //如果不是管理员,则启动UAC
  48. System.Diagnostics.Process.Start(startInfo);
  49. //退出 System.Windows.Forms.Application.Exit();
  50. }
  51. #endregion
  52. }
  53. catch (Exception ex)
  54. {
  55. string str = GetExceptionMsg(ex, string.Empty);
  56. MessageBox.Show(str, "系统错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
  57. }
  58. }
  59. static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
  60. {
  61. string str = GetExceptionMsg(e.Exception, e.ToString());
  62. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  63. }
  64. //未处理的异常统一通过这里返回
  65. static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
  66. {
  67. string str = GetExceptionMsg(e.ExceptionObject as Exception, e.ToString());
  68. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  69. }
  70. /// <summary>
  71. /// 生成自定义异常消息
  72. /// </summary>
  73. /// <param name="ex">异常对象</param>
  74. /// <param name="backStr">备用异常消息:当ex为null时有效</param>
  75. /// <returns>异常字符串文本</returns>
  76. static string GetExceptionMsg(Exception ex, string backStr)
  77. {
  78. StringBuilder sb = new StringBuilder();
  79. if (ex != null)
  80. {
  81. sb.AppendLine(ex.Message);
  82. LogManager.DoLog(ex.StackTrace);
  83. LogManager.DoLog(ex.TargetSite.ToString());
  84. //sb.AppendLine(ex.StackTrace);
  85. //sb.AppendLine("【异常方法】:" + ex.TargetSite);
  86. }
  87. LogManager.DoLog(sb.ToString());
  88. return sb.ToString();
  89. }
  90. }
  91. }