PageDesign/PageDesignWinform/PageDesign/ExitForm.Designer.cs
2024-01-29 10:05:47 +08:00

166 lines
8.2 KiB
C#

namespace PageDesign
{
partial class ExitForm
{
/// <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(ExitForm));
this.panel1 = new System.Windows.Forms.Panel();
this.lblTitle = new System.Windows.Forms.Label();
this.lblDataDisplay = new System.Windows.Forms.Label();
this.picType = new System.Windows.Forms.PictureBox();
this.picExit = new System.Windows.Forms.PictureBox();
this.picYes = new System.Windows.Forms.PictureBox();
this.picNo = new System.Windows.Forms.PictureBox();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picType)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picExit)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picYes)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picNo)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Navy;
this.panel1.Controls.Add(this.lblTitle);
this.panel1.Controls.Add(this.picExit);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(320, 47);
this.panel1.TabIndex = 0;
//
// lblTitle
//
this.lblTitle.AutoSize = true;
this.lblTitle.BackColor = System.Drawing.Color.Navy;
this.lblTitle.Font = new System.Drawing.Font("方正楷体简体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblTitle.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.lblTitle.Location = new System.Drawing.Point(12, 14);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(94, 22);
this.lblTitle.TabIndex = 16;
this.lblTitle.Text = "退出软件";
//
// lblDataDisplay
//
this.lblDataDisplay.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.lblDataDisplay.Font = new System.Drawing.Font("方正楷体简体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblDataDisplay.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.lblDataDisplay.Location = new System.Drawing.Point(146, 71);
this.lblDataDisplay.Name = "lblDataDisplay";
this.lblDataDisplay.Size = new System.Drawing.Size(135, 54);
this.lblDataDisplay.TabIndex = 28;
this.lblDataDisplay.Text = "退出程序";
//
// picType
//
this.picType.Image = global::PageDesign.Properties.Resources.Warning1;
this.picType.Location = new System.Drawing.Point(35, 71);
this.picType.Name = "picType";
this.picType.Size = new System.Drawing.Size(80, 80);
this.picType.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picType.TabIndex = 1;
this.picType.TabStop = false;
//
// picExit
//
this.picExit.BackColor = System.Drawing.Color.Navy;
this.picExit.Image = ((System.Drawing.Image)(resources.GetObject("picExit.Image")));
this.picExit.Location = new System.Drawing.Point(283, 13);
this.picExit.Name = "picExit";
this.picExit.Size = new System.Drawing.Size(25, 25);
this.picExit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picExit.TabIndex = 27;
this.picExit.TabStop = false;
this.picExit.Click += new System.EventHandler(this.picExit_Click);
this.picExit.MouseEnter += new System.EventHandler(this.picExit_MouseEnter);
this.picExit.MouseLeave += new System.EventHandler(this.picExit_MouseLeave);
//
// picYes
//
this.picYes.Image = ((System.Drawing.Image)(resources.GetObject("picYes.Image")));
this.picYes.Location = new System.Drawing.Point(150, 129);
this.picYes.Name = "picYes";
this.picYes.Size = new System.Drawing.Size(30, 30);
this.picYes.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picYes.TabIndex = 29;
this.picYes.TabStop = false;
this.picYes.Click += new System.EventHandler(this.picYes_Click);
this.picYes.MouseEnter += new System.EventHandler(this.picYes_MouseEnter);
this.picYes.MouseLeave += new System.EventHandler(this.picYes_MouseLeave);
//
// picNo
//
this.picNo.Image = ((System.Drawing.Image)(resources.GetObject("picNo.Image")));
this.picNo.Location = new System.Drawing.Point(240, 129);
this.picNo.Name = "picNo";
this.picNo.Size = new System.Drawing.Size(30, 30);
this.picNo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picNo.TabIndex = 30;
this.picNo.TabStop = false;
this.picNo.Click += new System.EventHandler(this.picNo_Click);
this.picNo.MouseEnter += new System.EventHandler(this.picNo_MouseEnter);
this.picNo.MouseLeave += new System.EventHandler(this.picNo_MouseLeave);
//
// ExitForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.ClientSize = new System.Drawing.Size(320, 180);
this.ControlBox = false;
this.Controls.Add(this.picNo);
this.Controls.Add(this.picYes);
this.Controls.Add(this.lblDataDisplay);
this.Controls.Add(this.picType);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Name = "ExitForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Load += new System.EventHandler(this.ExitForm_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picType)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picExit)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picYes)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picNo)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.PictureBox picExit;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.PictureBox picType;
private System.Windows.Forms.Label lblDataDisplay;
private System.Windows.Forms.PictureBox picYes;
private System.Windows.Forms.PictureBox picNo;
}
}