machine2014arcade.Game.ScreenMessage.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.lblText = new System.Windows.Forms.Label();
            this.tmrMvt = new System.Windows.Forms.Timer(this.components);
            this.SuspendLayout();
            //
            // lblText
            //
            this.lblText.AutoSize = true;
            this.lblText.Font = new System.Drawing.Font("Ravie", 72F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblText.ForeColor = System.Drawing.Color.Orange;
            this.lblText.Location = new System.Drawing.Point(46, 56);
            this.lblText.Name = "lblText";
            this.lblText.Size = new System.Drawing.Size(869, 129);
            this.lblText.TabIndex = 0;
            this.lblText.Text = "Dummy Text";
            //
            // tmrMvt
            //
            this.tmrMvt.Interval = 40;
            this.tmrMvt.Tick += new System.EventHandler(this.tmrMvt_Tick);
            //
            // ScreenMessage
            //
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(940, 250);
            this.Controls.Add(this.lblText);
            this.Name = "ScreenMessage";
            this.TransparencyKey = System.Drawing.Color.White;
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.ScreenMessage_Load);
            this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ScreenMessage_KeyPress);
            this.ResumeLayout(false);
            this.PerformLayout();
        }