namespace nobleUpdater { public partial class FormMain : global::System.Windows.Forms.Form { protected override void Dispose(bool disposing) { if (disposing && this.components != null) { this.components.Dispose(); } base.Dispose(disposing); } private void InitializeComponent() { this.progressBarUpdate = new System.Windows.Forms.ProgressBar(); this.labelProgress = new System.Windows.Forms.Label(); this.SuspendLayout(); // // progressBarUpdate // this.progressBarUpdate.ForeColor = System.Drawing.Color.White; this.progressBarUpdate.Location = new System.Drawing.Point(1, 1); this.progressBarUpdate.Name = "progressBarUpdate"; this.progressBarUpdate.Size = new System.Drawing.Size(251, 34); this.progressBarUpdate.TabIndex = 0; // // labelProgress // this.labelProgress.AutoSize = true; this.labelProgress.BackColor = System.Drawing.Color.Transparent; this.labelProgress.ForeColor = System.Drawing.Color.White; this.labelProgress.Location = new System.Drawing.Point(9, 38); this.labelProgress.Name = "labelProgress"; this.labelProgress.Size = new System.Drawing.Size(78, 13); this.labelProgress.TabIndex = 1; this.labelProgress.Text = "Downloading..."; // // FormMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ActiveCaptionText; this.ClientSize = new System.Drawing.Size(252, 58); this.Controls.Add(this.labelProgress); this.Controls.Add(this.progressBarUpdate); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormMain"; this.Padding = new System.Windows.Forms.Padding(20, 30, 20, 20); this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.TopMost = true; this.Load += new System.EventHandler(this.FormMain_Load); this.ResumeLayout(false); this.PerformLayout(); } private global::System.ComponentModel.IContainer components; private global::System.Windows.Forms.ProgressBar progressBarUpdate; private global::System.Windows.Forms.Label labelProgress; } }