📄 frmmessage.designer.cs
字号:
namespace MyQQ
{
partial class frmMessage
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMessage));
this.panel1 = new System.Windows.Forms.Panel();
this.lblFromUser = new System.Windows.Forms.Label();
this.lblMessage = new System.Windows.Forms.Label();
this.picHeader = new System.Windows.Forms.PictureBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picHeader)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.panel1.Controls.Add(this.lblFromUser);
this.panel1.Controls.Add(this.lblMessage);
this.panel1.Controls.Add(this.picHeader);
this.panel1.Location = new System.Drawing.Point(9, 8);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(357, 94);
this.panel1.TabIndex = 0;
//
// lblFromUser
//
this.lblFromUser.AutoSize = true;
this.lblFromUser.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblFromUser.Location = new System.Drawing.Point(74, 26);
this.lblFromUser.Name = "lblFromUser";
this.lblFromUser.Size = new System.Drawing.Size(70, 14);
this.lblFromUser.TabIndex = 1;
this.lblFromUser.Text = "From User";
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblMessage.Location = new System.Drawing.Point(94, 52);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(91, 14);
this.lblMessage.TabIndex = 1;
this.lblMessage.Text = "Show Message";
//
// picHeader
//
this.picHeader.Image = ((System.Drawing.Image)(resources.GetObject("picHeader.Image")));
this.picHeader.Location = new System.Drawing.Point(21, 14);
this.picHeader.Name = "picHeader";
this.picHeader.Size = new System.Drawing.Size(35, 36);
this.picHeader.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.picHeader.TabIndex = 0;
this.picHeader.TabStop = false;
//
// btnCancel
//
this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
this.btnCancel.Location = new System.Drawing.Point(291, 110);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 31;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
this.btnOK.Location = new System.Drawing.Point(203, 110);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 30;
this.btnOK.Text = "同意";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// frmMessage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(378, 140);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.panel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "frmMessage";
this.Text = "系统消息";
this.Load += new System.EventHandler(this.frmMessage_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picHeader)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label lblMessage;
private System.Windows.Forms.PictureBox picHeader;
private System.Windows.Forms.Label lblFromUser;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -