Update FrmLoading.Designer.cs

This commit is contained in:
Tiago Conceição
2020-05-10 06:15:31 +01:00
parent 72f52e0ef7
commit b28bf4ddc1
+24 -10
View File
@@ -35,21 +35,23 @@
this.timer = new System.Windows.Forms.Timer(this.components);
this.lbElapsedTime = new System.Windows.Forms.Label();
this.lbWait = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// progressBar
//
this.progressBar.Dock = System.Windows.Forms.DockStyle.Bottom;
this.progressBar.Location = new System.Drawing.Point(0, 74);
this.progressBar.Location = new System.Drawing.Point(0, 72);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(432, 23);
this.progressBar.Size = new System.Drawing.Size(430, 23);
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
this.progressBar.TabIndex = 0;
//
// lbDescription
//
this.lbDescription.AutoSize = true;
this.lbDescription.Location = new System.Drawing.Point(12, 18);
this.lbDescription.Location = new System.Drawing.Point(3, 12);
this.lbDescription.Name = "lbDescription";
this.lbDescription.Size = new System.Drawing.Size(35, 13);
this.lbDescription.TabIndex = 1;
@@ -64,7 +66,7 @@
this.lbElapsedTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.lbElapsedTime.AutoSize = true;
this.lbElapsedTime.Location = new System.Drawing.Point(12, 46);
this.lbElapsedTime.Location = new System.Drawing.Point(3, 39);
this.lbElapsedTime.Name = "lbElapsedTime";
this.lbElapsedTime.Size = new System.Drawing.Size(30, 13);
this.lbElapsedTime.TabIndex = 2;
@@ -76,22 +78,32 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lbWait.AutoSize = true;
this.lbWait.Location = new System.Drawing.Point(350, 46);
this.lbWait.Location = new System.Drawing.Point(334, 39);
this.lbWait.Name = "lbWait";
this.lbWait.Size = new System.Drawing.Size(70, 13);
this.lbWait.TabIndex = 3;
this.lbWait.Text = "Please wait...";
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.lbDescription);
this.panel1.Controls.Add(this.lbWait);
this.panel1.Controls.Add(this.lbElapsedTime);
this.panel1.Controls.Add(this.progressBar);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(432, 97);
this.panel1.TabIndex = 4;
//
// FrmLoading
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(432, 97);
this.ControlBox = false;
this.Controls.Add(this.lbWait);
this.Controls.Add(this.lbElapsedTime);
this.Controls.Add(this.lbDescription);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
@@ -102,8 +114,9 @@
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Loading";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
@@ -114,5 +127,6 @@
private System.Windows.Forms.Timer timer;
private System.Windows.Forms.Label lbElapsedTime;
private System.Windows.Forms.Label lbWait;
private System.Windows.Forms.Panel panel1;
}
}