BabbySay.Form1.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.components = new Container();
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(Form1));
            this.tb_showstuff = new TextBox();
            this.timer1 = new Timer(this.components);
            this.wmp_do_eet = new AxWindowsMediaPlayer();
            ((ISupportInitialize)this.wmp_do_eet).BeginInit();
            base.SuspendLayout();
            this.tb_showstuff.BackColor = Color.Black;
            this.tb_showstuff.Font = new Font("Courier New", 14.5f);
            this.tb_showstuff.ForeColor = Color.White;
            this.tb_showstuff.Location = new Point(1, -3);
            this.tb_showstuff.Multiline = true;
            this.tb_showstuff.Name = "tb_showstuff";
            this.tb_showstuff.Size = new Size(1560, 277);
            this.tb_showstuff.TabIndex = 1;
            this.tb_showstuff.TextAlign = HorizontalAlignment.Center;
            this.tb_showstuff.Visible = false;
            this.timer1.Tick += new EventHandler(this.timer1_Tick);
            this.wmp_do_eet.Enabled = true;
            this.wmp_do_eet.Location = new Point(455, -30);
            this.wmp_do_eet.Name = "wmp_do_eet";
            this.wmp_do_eet.OcxState = (AxHost.State)componentResourceManager.GetObject("wmp_do_eet.OcxState");
            this.wmp_do_eet.Size = new Size(588, 409);
            this.wmp_do_eet.TabIndex = 0;
            this.wmp_do_eet.Visible = false;
            base.AutoScaleDimensions = new SizeF(6f, 13f);
            base.AutoScaleMode = AutoScaleMode.Font;
            base.ClientSize = new Size(1552, 273);
            base.Controls.Add(this.tb_showstuff);
            base.Controls.Add(this.wmp_do_eet);
            base.Name = "Form1";
            this.Text = "Form1";
            ((ISupportInitialize)this.wmp_do_eet).EndInit();
            base.ResumeLayout(false);
            base.PerformLayout();
        }