12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.ComponentLibrary
- {
- public partial class frmExceptionError : Form
- {
- public frmExceptionError()
- {
- InitializeComponent();
- this.Shown += frmExceptionError_Shown;
-
- }
- void frmExceptionError_Shown(object sender, EventArgs e)
- {
- this.lbErrorMsg.Text = string.Format("程序发生致命错误,请停止当前操作并及时联系开发工程师!\r\n出现应用程序未处理的异常:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "\r\n异常类型:{0}\r\n异常消息:{1}", errorTypeName, errorMessage);
- this.txtErrorInfo.Text = this.lbErrorMsg.Text + "\r\n" + errorStackTrace;
- }
- string errorTypeName = "";
- /// <summary>
- /// 异常类型
- /// </summary>
- public string ErrorTypeName
- {
- get { return errorTypeName; }
- set { errorTypeName = value; }
- }
- string errorMessage = "";
- /// <summary>
- /// 异常消息
- /// </summary>
- public string ErrorMessage
- {
- get { return errorMessage; }
- set { errorMessage = value; }
- }
- string errorStackTrace = "";
- /// <summary>
- /// 堆栈信息
- /// </summary>
- public string ErrorStackTrace
- {
- get { return errorStackTrace; }
- set { errorStackTrace = value; }
- }
- private void buttonClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|