ucLamp.Designer.cs 7.28 KB
namespace MyControlLib
{
    partial class ucLamp
    {
        /// <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 组件设计器生成的代码

        /// <summary> 
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucLamp));
            this.picYellow = new System.Windows.Forms.PictureBox();
            this.picGreen = new System.Windows.Forms.PictureBox();
            this.picRed = new System.Windows.Forms.PictureBox();
            this.picBlue = new System.Windows.Forms.PictureBox();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            ((System.ComponentModel.ISupportInitialize)(this.picYellow)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picGreen)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picRed)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picBlue)).BeginInit();
            this.tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // picYellow
            // 
            this.picYellow.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picYellow.Image = ((System.Drawing.Image)(resources.GetObject("picYellow.Image")));
            this.picYellow.Location = new System.Drawing.Point(3, 19);
            this.picYellow.Name = "picYellow";
            this.picYellow.Size = new System.Drawing.Size(10, 10);
            this.picYellow.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picYellow.TabIndex = 1;
            this.picYellow.TabStop = false;
            this.picYellow.Visible = false;
            // 
            // picGreen
            // 
            this.picGreen.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picGreen.Image = ((System.Drawing.Image)(resources.GetObject("picGreen.Image")));
            this.picGreen.Location = new System.Drawing.Point(3, 35);
            this.picGreen.Name = "picGreen";
            this.picGreen.Size = new System.Drawing.Size(10, 10);
            this.picGreen.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picGreen.TabIndex = 2;
            this.picGreen.TabStop = false;
            this.picGreen.Visible = false;
            // 
            // picRed
            // 
            this.picRed.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picRed.Image = ((System.Drawing.Image)(resources.GetObject("picRed.Image")));
            this.picRed.Location = new System.Drawing.Point(3, 51);
            this.picRed.Name = "picRed";
            this.picRed.Size = new System.Drawing.Size(10, 10);
            this.picRed.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picRed.TabIndex = 3;
            this.picRed.TabStop = false;
            this.picRed.Visible = false;
            // 
            // picBlue
            // 
            this.picBlue.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picBlue.Image = ((System.Drawing.Image)(resources.GetObject("picBlue.Image")));
            this.picBlue.Location = new System.Drawing.Point(3, 3);
            this.picBlue.Name = "picBlue";
            this.picBlue.Size = new System.Drawing.Size(10, 10);
            this.picBlue.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picBlue.TabIndex = 0;
            this.picBlue.TabStop = false;
            this.picBlue.Visible = false;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanel1.BackgroundImage")));
            this.tableLayoutPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.picRed, 0, 3);
            this.tableLayoutPanel1.Controls.Add(this.picGreen, 0, 2);
            this.tableLayoutPanel1.Controls.Add(this.picYellow, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.picBlue, 0, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 4;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(16, 64);
            this.tableLayoutPanel1.TabIndex = 4;
            // 
            // ucLamp
            // 
            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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.Controls.Add(this.tableLayoutPanel1);
            this.DoubleBuffered = true;
            this.Margin = new System.Windows.Forms.Padding(0);
            this.Name = "ucLamp";
            this.Size = new System.Drawing.Size(16, 64);
            ((System.ComponentModel.ISupportInitialize)(this.picYellow)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picGreen)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picRed)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picBlue)).EndInit();
            this.tableLayoutPanel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
        private System.Windows.Forms.PictureBox picYellow;
        private System.Windows.Forms.PictureBox picGreen;
        private System.Windows.Forms.PictureBox picRed;
        private System.Windows.Forms.PictureBox picBlue;




    }
}