Files
tj-tzhg/JJMediSys/MyMessageBox.Designer.cs
2025-11-26 17:21:18 +08:00

145 lines
6.9 KiB
C#

namespace JJMediSys
{
partial class MyMessageBox
{
/// <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.components = new System.ComponentModel.Container();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.LabTitle = new System.Windows.Forms.Label();
this.LabMsg = new System.Windows.Forms.Label();
this.BYes = new System.Windows.Forms.Button();
this.BNo = new System.Windows.Forms.Button();
this.TimeDelay = new System.Windows.Forms.Timer(this.components);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
this.pictureBox1.BackgroundImage = global::JJMediSys.Properties.Resources.close;
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox1.Location = new System.Drawing.Point(544, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(30, 29);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// LabTitle
//
this.LabTitle.BackColor = System.Drawing.Color.Transparent;
this.LabTitle.Font = new System.Drawing.Font("微软雅黑", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.LabTitle.ForeColor = System.Drawing.Color.Orange;
this.LabTitle.Location = new System.Drawing.Point(43, 27);
this.LabTitle.Name = "LabTitle";
this.LabTitle.Size = new System.Drawing.Size(495, 40);
this.LabTitle.TabIndex = 1;
this.LabTitle.Text = "提示";
this.LabTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// LabMsg
//
this.LabMsg.BackColor = System.Drawing.Color.Transparent;
this.LabMsg.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.LabMsg.ForeColor = System.Drawing.Color.LightSeaGreen;
this.LabMsg.Location = new System.Drawing.Point(12, 79);
this.LabMsg.Name = "LabMsg";
this.LabMsg.Size = new System.Drawing.Size(553, 61);
this.LabMsg.TabIndex = 2;
this.LabMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// BYes
//
this.BYes.BackgroundImage = global::JJMediSys.Properties.Resources.Bt1;
this.BYes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.BYes.FlatAppearance.BorderSize = 0;
this.BYes.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BYes.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.BYes.ForeColor = System.Drawing.Color.White;
this.BYes.Location = new System.Drawing.Point(358, 143);
this.BYes.Name = "BYes";
this.BYes.Size = new System.Drawing.Size(146, 50);
this.BYes.TabIndex = 3;
this.BYes.Text = "是";
this.BYes.UseVisualStyleBackColor = true;
this.BYes.Click += new System.EventHandler(this.BYes_Click);
//
// BNo
//
this.BNo.BackgroundImage = global::JJMediSys.Properties.Resources.Bt2;
this.BNo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.BNo.FlatAppearance.BorderSize = 0;
this.BNo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.BNo.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.BNo.ForeColor = System.Drawing.Color.White;
this.BNo.Location = new System.Drawing.Point(72, 143);
this.BNo.Name = "BNo";
this.BNo.Size = new System.Drawing.Size(146, 50);
this.BNo.TabIndex = 4;
this.BNo.Text = "否";
this.BNo.UseVisualStyleBackColor = true;
this.BNo.Click += new System.EventHandler(this.BNo_Click);
//
// TimeDelay
//
this.TimeDelay.Interval = 1000;
this.TimeDelay.Tick += new System.EventHandler(this.TimeDelay_Tick);
//
// MyMessageBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::JJMediSys.Properties.Resources.Background5;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(577, 205);
this.Controls.Add(this.BNo);
this.Controls.Add(this.BYes);
this.Controls.Add(this.LabMsg);
this.Controls.Add(this.LabTitle);
this.Controls.Add(this.pictureBox1);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "MyMessageBox";
this.Text = "MyMessageBox";
this.TopMost = true;
this.Load += new System.EventHandler(this.MyMessageBox_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label LabTitle;
private System.Windows.Forms.Label LabMsg;
private System.Windows.Forms.Button BYes;
private System.Windows.Forms.Button BNo;
private System.Windows.Forms.Timer TimeDelay;
}
}