Bloom.MiscUI.ToastNotifier.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.components = new System.ComponentModel.Container();
            this._message = new System.Windows.Forms.Label();
            this.Image = new System.Windows.Forms.PictureBox();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this._callToAction = new System.Windows.Forms.LinkLabel();
            ((System.ComponentModel.ISupportInitialize)(this.Image)).BeginInit();
            this.SuspendLayout();
            //
            // _message
            //
            this._message.AutoSize = true;
            this._message.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._message.Location = new System.Drawing.Point(50, 9);
            this._message.MaximumSize = new System.Drawing.Size(240, 0);
            this._message.Name = "_message";
            this._message.Size = new System.Drawing.Size(239, 36);
            this._message.TabIndex = 2;
            this._message.Text = "Notification Text That may take two lines";
            this._message.Click += new System.EventHandler(this.ToastNotifier_Click);
            //
            // Image
            //
            this.Image.Location = new System.Drawing.Point(6, 9);
            this.Image.Name = "Image";
            this.Image.Size = new System.Drawing.Size(39, 43);
            this.Image.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.Image.TabIndex = 3;
            this.Image.TabStop = false;
            this.Image.Click += new System.EventHandler(this.ToastNotifier_Click);
            //
            // imageList1
            //
            this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            //
            // _callToAction
            //
            this._callToAction.AutoSize = true;
            this._callToAction.Location = new System.Drawing.Point(51, 47);
            this._callToAction.Name = "_callToAction";
            this._callToAction.Size = new System.Drawing.Size(55, 13);
            this._callToAction.TabIndex = 4;
            this._callToAction.TabStop = true;
            this._callToAction.Text = "linkLabel1";
            this._callToAction.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.callToAction_LinkClicked);
            this._callToAction.Click += new System.EventHandler(this.ToastNotifier_Click);
            //
            // ToastNotifier
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(296, 64);
            this.ControlBox = false;
            this.Controls.Add(this._callToAction);
            this.Controls.Add(this.Image);
            this.Controls.Add(this._message);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "ToastNotifier";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.Click += new System.EventHandler(this.ToastNotifier_Click);
            ((System.ComponentModel.ISupportInitialize)(this.Image)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }