Program.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. Console.WriteLine("异常");
  68. string str = GetExceptionMsg(e.ExceptionObject as Exception, e.ToString());
  69. MessageBox.Show(str, "操作异常", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  70. }
  71. /// <summary>
  72. /// 生成自定义异常消息
  73. /// </summary>
  74. /// <param name="ex">异常对象</param>
  75. /// <param name="backStr">备用异常消息:当ex为null时有效</param>
  76. /// <returns>异常字符串文本</returns>
  77. static string GetExceptionMsg(Exception ex, string backStr)
  78. {
  79. StringBuilder sb = new StringBuilder();
  80. if (ex != null)
  81. {
  82. sb.AppendLine(ex.Message);
  83. //sb.AppendLine(ex.StackTrace);
  84. //sb.AppendLine("【异常方法】:" + ex.TargetSite);
  85. }
  86. LogManager.DoLog(sb.ToString());
  87. return sb.ToString();
  88. }
  89. }
  90. }