This commit is contained in:
2022-07-22 18:44:03 +00:00
parent c9799d26e6
commit 07becaee80
9 changed files with 198 additions and 93 deletions

View File

@@ -30,6 +30,8 @@
{
this.lblOps = new System.Windows.Forms.Label();
this.lblStep = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// lblOps
@@ -37,9 +39,9 @@
this.lblOps.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblOps.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOps.Location = new System.Drawing.Point(11, 11);
this.lblOps.Location = new System.Drawing.Point(12, 11);
this.lblOps.Name = "lblOps";
this.lblOps.Size = new System.Drawing.Size(614, 28);
this.lblOps.Size = new System.Drawing.Size(613, 28);
this.lblOps.TabIndex = 0;
this.lblOps.Text = "Operation...";
//
@@ -49,21 +51,30 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblStep.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblStep.Location = new System.Drawing.Point(11, 50);
this.lblStep.Location = new System.Drawing.Point(12, 49);
this.lblStep.Name = "lblStep";
this.lblStep.Size = new System.Drawing.Size(614, 87);
this.lblStep.Size = new System.Drawing.Size(613, 115);
this.lblStep.TabIndex = 1;
this.lblStep.Text = "Step";
//
// panel1
//
this.panel1.Controls.Add(this.lblStep);
this.panel1.Controls.Add(this.lblOps);
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(637, 173);
this.panel1.TabIndex = 2;
//
// Waiting
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(637, 146);
this.ClientSize = new System.Drawing.Size(637, 173);
this.ControlBox = false;
this.Controls.Add(this.lblStep);
this.Controls.Add(this.lblOps);
this.Controls.Add(this.panel1);
this.Cursor = System.Windows.Forms.Cursors.AppStarting;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "Waiting";
@@ -71,6 +82,7 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Processing";
this.TopMost = true;
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -79,5 +91,6 @@
private System.Windows.Forms.Label lblOps;
private System.Windows.Forms.Label lblStep;
private System.Windows.Forms.Panel panel1;
}
}