ThoNohT.NohBoard.Controls.ColorChooser.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.DisplayLabel = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // DisplayLabel
            // 
            this.DisplayLabel.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.DisplayLabel.AutoEllipsis = true;
            this.DisplayLabel.BackColor = System.Drawing.SystemColors.Control;
            this.DisplayLabel.Location = new System.Drawing.Point(38, 0);
            this.DisplayLabel.Name = "DisplayLabel";
            this.DisplayLabel.Size = new System.Drawing.Size(182, 26);
            this.DisplayLabel.TabIndex = 0;
            this.DisplayLabel.Text = "Pick a color";
            this.DisplayLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.DisplayLabel.DoubleClick += new System.EventHandler(this.ColorChooser_DoubleClick);
            this.DisplayLabel.Layout += new System.Windows.Forms.LayoutEventHandler(this.DisplayLabel_Layout);
            // 
            // ColorChooser
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.Controls.Add(this.DisplayLabel);
            this.Name = "ColorChooser";
            this.Size = new System.Drawing.Size(220, 26);
            this.DoubleClick += new System.EventHandler(this.ColorChooser_DoubleClick);
            this.ResumeLayout(false);

        }