namespace UserControlClass { public partial class LabPictureControl { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.labText = new System.Windows.Forms.Label(); this.labPicture = new System.Windows.Forms.Label(); this.SuspendLayout(); // // labText // this.labText.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labText.Location = new System.Drawing.Point(2, 59); this.labText.Name = "labText"; this.labText.Size = new System.Drawing.Size(83, 25); this.labText.TabIndex = 1; this.labText.Text = "添加抽屉"; this.labText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.labText.MouseLeave += new System.EventHandler(this.labText_MouseLeave); this.labText.MouseHover += new System.EventHandler(this.labText_MouseHover); // // labPicture // this.labPicture.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labPicture.Location = new System.Drawing.Point(0, 3); this.labPicture.Name = "labPicture"; this.labPicture.Padding = new System.Windows.Forms.Padding(17, 21, 17, 21); this.labPicture.Size = new System.Drawing.Size(86, 54); this.labPicture.TabIndex = 0; this.labPicture.MouseLeave += new System.EventHandler(this.labPicture_MouseLeave); this.labPicture.MouseHover += new System.EventHandler(this.labPicture_MouseHover); // // LabPictureControl // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53))))); this.Controls.Add(this.labText); this.Controls.Add(this.labPicture); this.Font = new System.Drawing.Font("Segoe UI", 9.75F); this.ForeColor = System.Drawing.Color.White; this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.Name = "LabPictureControl"; this.Size = new System.Drawing.Size(86, 85); this.MouseLeave += new System.EventHandler(this.LabPictureControl_MouseLeave); this.MouseHover += new System.EventHandler(this.LabPictureControl_MouseHover); this.ResumeLayout(false); } #endregion public System.Windows.Forms.Label labPicture; public System.Windows.Forms.Label labText; } }