FrmErrorMsg.Designer.cs 6.91 KB
namespace GeneralLib
{
    partial class FrmErrorMsg
    {
        /// <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()
        {
            this.txtMsg = new System.Windows.Forms.TextBox();
            this.btnShowDetail = new System.Windows.Forms.Button();
            this.txtDetail = new System.Windows.Forms.TextBox();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnShowLog = new System.Windows.Forms.Button();
            this.pnlDetail = new System.Windows.Forms.Panel();
            this.pnlDetail.SuspendLayout();
            this.SuspendLayout();
            // 
            // txtMsg
            // 
            this.txtMsg.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtMsg.BackColor = System.Drawing.SystemColors.Control;
            this.txtMsg.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtMsg.Location = new System.Drawing.Point(40, 37);
            this.txtMsg.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.txtMsg.Multiline = true;
            this.txtMsg.Name = "txtMsg";
            this.txtMsg.ReadOnly = true;
            this.txtMsg.Size = new System.Drawing.Size(840, 105);
            this.txtMsg.TabIndex = 0;
            this.txtMsg.Text = "程序检测到资源冲突或异常。\r\n1.请检查是否因启用了其他插件而引起冲突\r\n2.查看详细信息\r\n3.查看日志,可将日志发送给技术支持帮助解决";
            // 
            // btnShowDetail
            // 
            this.btnShowDetail.AutoSize = true;
            this.btnShowDetail.Location = new System.Drawing.Point(40, 152);
            this.btnShowDetail.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.btnShowDetail.Name = "btnShowDetail";
            this.btnShowDetail.Size = new System.Drawing.Size(840, 47);
            this.btnShowDetail.TabIndex = 0;
            this.btnShowDetail.Text = "点击此处查看详细信息↓/收起详细信息↑";
            this.btnShowDetail.UseVisualStyleBackColor = true;
            this.btnShowDetail.Click += new System.EventHandler(this.btnShowDetail_Click);
            // 
            // txtDetail
            // 
            this.txtDetail.BackColor = System.Drawing.SystemColors.Control;
            this.txtDetail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDetail.Location = new System.Drawing.Point(40, 4);
            this.txtDetail.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.txtDetail.Multiline = true;
            this.txtDetail.Name = "txtDetail";
            this.txtDetail.ReadOnly = true;
            this.txtDetail.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtDetail.Size = new System.Drawing.Size(838, 398);
            this.txtDetail.TabIndex = 0;
            this.txtDetail.Text = "详细信息";
            // 
            // btnCancel
            // 
            this.btnCancel.AutoSize = true;
            this.btnCancel.Location = new System.Drawing.Point(693, 413);
            this.btnCancel.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(187, 54);
            this.btnCancel.TabIndex = 1;
            this.btnCancel.Text = "返回";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnShowLog
            // 
            this.btnShowLog.AutoSize = true;
            this.btnShowLog.Location = new System.Drawing.Point(411, 413);
            this.btnShowLog.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.btnShowLog.Name = "btnShowLog";
            this.btnShowLog.Size = new System.Drawing.Size(271, 54);
            this.btnShowLog.TabIndex = 1;
            this.btnShowLog.Text = "查看日志...";
            this.btnShowLog.UseVisualStyleBackColor = true;
            this.btnShowLog.Click += new System.EventHandler(this.btnShowLog_Click);
            // 
            // pnlDetail
            // 
            this.pnlDetail.AutoSize = true;
            this.pnlDetail.Controls.Add(this.btnShowLog);
            this.pnlDetail.Controls.Add(this.btnCancel);
            this.pnlDetail.Controls.Add(this.txtDetail);
            this.pnlDetail.Location = new System.Drawing.Point(0, 210);
            this.pnlDetail.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.pnlDetail.Name = "pnlDetail";
            this.pnlDetail.Size = new System.Drawing.Size(914, 474);
            this.pnlDetail.TabIndex = 2;
            // 
            // FrmErrorMsg
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.ClientSize = new System.Drawing.Size(917, 686);
            this.Controls.Add(this.pnlDetail);
            this.Controls.Add(this.btnShowDetail);
            this.Controls.Add(this.txtMsg);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmErrorMsg";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "异常提示";
            this.Load += new System.EventHandler(this.FrmErrorMsg_Load);
            this.pnlDetail.ResumeLayout(false);
            this.pnlDetail.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox txtMsg;
        private System.Windows.Forms.Button btnShowDetail;
        private System.Windows.Forms.TextBox txtDetail;
        private System.Windows.Forms.Button btnCancel;
        private System.Windows.Forms.Button btnShowLog;
        private System.Windows.Forms.Panel pnlDetail;
    }
}