Winkle.UpdateNotification.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.NewVersionAvailable = new System.Windows.Forms.Label();
            this.description = new System.Windows.Forms.RichTextBox();
            this.buttonGetUpdate = new System.Windows.Forms.Button();
            this.buttonIgnore = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // NewVersionAvailable
            // 
            this.NewVersionAvailable.AutoSize = true;
            this.NewVersionAvailable.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.NewVersionAvailable.Location = new System.Drawing.Point(23, 9);
            this.NewVersionAvailable.Name = "NewVersionAvailable";
            this.NewVersionAvailable.Size = new System.Drawing.Size(140, 21);
            this.NewVersionAvailable.TabIndex = 0;
            this.NewVersionAvailable.Text = "Update available";
            // 
            // description
            // 
            this.description.Location = new System.Drawing.Point(27, 33);
            this.description.Name = "description";
            this.description.Size = new System.Drawing.Size(761, 459);
            this.description.TabIndex = 1;
            this.description.Text = "";
            // 
            // buttonGetUpdate
            // 
            this.buttonGetUpdate.Location = new System.Drawing.Point(158, 498);
            this.buttonGetUpdate.Name = "buttonGetUpdate";
            this.buttonGetUpdate.Size = new System.Drawing.Size(221, 23);
            this.buttonGetUpdate.TabIndex = 2;
            this.buttonGetUpdate.Text = "Get update";
            this.buttonGetUpdate.UseVisualStyleBackColor = true;
            this.buttonGetUpdate.Click += new System.EventHandler(this.buttonGetUpdate_Click);
            // 
            // buttonIgnore
            // 
            this.buttonIgnore.Location = new System.Drawing.Point(448, 498);
            this.buttonIgnore.Name = "buttonIgnore";
            this.buttonIgnore.Size = new System.Drawing.Size(218, 23);
            this.buttonIgnore.TabIndex = 3;
            this.buttonIgnore.Text = "Ignore this update";
            this.buttonIgnore.UseVisualStyleBackColor = true;
            this.buttonIgnore.Click += new System.EventHandler(this.buttonIgnore_Click);
            // 
            // UpdateNotification
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(815, 550);
            this.Controls.Add(this.buttonIgnore);
            this.Controls.Add(this.buttonGetUpdate);
            this.Controls.Add(this.description);
            this.Controls.Add(this.NewVersionAvailable);
            this.Name = "UpdateNotification";
            this.Text = "New update available for download";
            this.ResumeLayout(false);
            this.PerformLayout();

        }