frmExceptionError.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public partial class frmExceptionError : Form
  12. {
  13. public frmExceptionError()
  14. {
  15. InitializeComponent();
  16. this.Shown += frmExceptionError_Shown;
  17. }
  18. void frmExceptionError_Shown(object sender, EventArgs e)
  19. {
  20. this.lbErrorMsg.Text = string.Format("程序发生致命错误,请停止当前操作并及时联系开发工程师!\r\n出现应用程序未处理的异常:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "\r\n异常类型:{0}\r\n异常消息:{1}", errorTypeName, errorMessage);
  21. this.txtErrorInfo.Text = this.lbErrorMsg.Text + "\r\n" + errorStackTrace;
  22. }
  23. string errorTypeName = "";
  24. /// <summary>
  25. /// 异常类型
  26. /// </summary>
  27. public string ErrorTypeName
  28. {
  29. get { return errorTypeName; }
  30. set { errorTypeName = value; }
  31. }
  32. string errorMessage = "";
  33. /// <summary>
  34. /// 异常消息
  35. /// </summary>
  36. public string ErrorMessage
  37. {
  38. get { return errorMessage; }
  39. set { errorMessage = value; }
  40. }
  41. string errorStackTrace = "";
  42. /// <summary>
  43. /// 堆栈信息
  44. /// </summary>
  45. public string ErrorStackTrace
  46. {
  47. get { return errorStackTrace; }
  48. set { errorStackTrace = value; }
  49. }
  50. private void buttonClose_Click(object sender, EventArgs e)
  51. {
  52. this.Close();
  53. }
  54. }
  55. }