123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- namespace LYFZ.ComponentLibrary
- {
- partial class frmExceptionError
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmExceptionError));
- this.txtErrorInfo = new System.Windows.Forms.TextBox();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.lbErrorMsg = new System.Windows.Forms.Label();
- this.buttonClose = new System.Windows.Forms.Button();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.SuspendLayout();
- //
- // txtErrorInfo
- //
- this.txtErrorInfo.BackColor = System.Drawing.Color.White;
- this.txtErrorInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtErrorInfo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtErrorInfo.ForeColor = System.Drawing.Color.DimGray;
- this.txtErrorInfo.Location = new System.Drawing.Point(3, 17);
- this.txtErrorInfo.Multiline = true;
- this.txtErrorInfo.Name = "txtErrorInfo";
- this.txtErrorInfo.ReadOnly = true;
- this.txtErrorInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.txtErrorInfo.Size = new System.Drawing.Size(578, 0);
- this.txtErrorInfo.TabIndex = 0;
- this.txtErrorInfo.Text = "错误详细堆栈信息";
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.lbErrorMsg);
- this.groupBox1.Controls.Add(this.buttonClose);
- this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox1.Location = new System.Drawing.Point(0, 0);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(584, 160);
- this.groupBox1.TabIndex = 1;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "错误描述";
- //
- // lbErrorMsg
- //
- this.lbErrorMsg.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbErrorMsg.ForeColor = System.Drawing.Color.DimGray;
- this.lbErrorMsg.Location = new System.Drawing.Point(12, 31);
- this.lbErrorMsg.Name = "lbErrorMsg";
- this.lbErrorMsg.Size = new System.Drawing.Size(460, 121);
- this.lbErrorMsg.TabIndex = 1;
- this.lbErrorMsg.Text = "lbErrorMsg";
- //
- // buttonClose
- //
- this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonClose.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.buttonClose.ForeColor = System.Drawing.Color.SlateGray;
- this.buttonClose.Location = new System.Drawing.Point(478, 24);
- this.buttonClose.Name = "buttonClose";
- this.buttonClose.Size = new System.Drawing.Size(94, 121);
- this.buttonClose.TabIndex = 0;
- this.buttonClose.Text = "关 闭";
- this.buttonClose.UseVisualStyleBackColor = true;
- this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.txtErrorInfo);
- this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox2.Location = new System.Drawing.Point(0, 160);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(584, 0);
- this.groupBox2.TabIndex = 2;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "详细堆栈信息【请按“Ctrl+C”复制文本框中的错误信息,并发送给软件工程师以便修复此BUG问题】";
- //
- // frmExceptionError
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.ClientSize = new System.Drawing.Size(584, 160);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "frmExceptionError";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "系统错误";
- this.groupBox1.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Button buttonClose;
- private System.Windows.Forms.Label lbErrorMsg;
- public System.Windows.Forms.TextBox txtErrorInfo;
- }
- }
|