FC3Editor.UI.CodeHelper.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.prototypeLabel = new Label();
            this.descriptionLabel = new Label();
            base.SuspendLayout();
            this.prototypeLabel.AutoSize = true;
            this.prototypeLabel.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.prototypeLabel.Location = new Point(-1, 2);
            this.prototypeLabel.Name = "prototypeLabel";
            this.prototypeLabel.Size = new Size(68, 13);
            this.prototypeLabel.TabIndex = 0;
            this.prototypeLabel.Text = "Function();";
            this.descriptionLabel.AutoSize = true;
            this.descriptionLabel.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.descriptionLabel.Location = new Point(-1, 18);
            this.descriptionLabel.MaximumSize = new Size(500, 0);
            this.descriptionLabel.Name = "descriptionLabel";
            this.descriptionLabel.Size = new Size(218, 13);
            this.descriptionLabel.TabIndex = 1;
            this.descriptionLabel.Text = "Some helper text just to see how it looks like.";
            base.AutoScaleDimensions = new SizeF(6f, 13f);
            base.AutoScaleMode = AutoScaleMode.Font;
            this.AutoSize = true;
            base.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            this.BackColor = SystemColors.Info;
            base.BorderStyle = BorderStyle.FixedSingle;
            base.Controls.Add(this.descriptionLabel);
            base.Controls.Add(this.prototypeLabel);
            base.Name = "CodeHelper";
            base.Padding = new Padding(0, 2, 0, 2);
            base.Size = new Size(220, 33);
            base.ResumeLayout(false);
            base.PerformLayout();
        }