Fixed issues when running in windows 7 which doesn't seem to support padding properly, rejigged everything to be simpler

This commit is contained in:
2022-07-20 20:21:20 +00:00
parent 63eebfee2f
commit 551db31a91
26 changed files with 175 additions and 185 deletions

View File

@@ -34,22 +34,27 @@
//
// lblOps
//
this.lblOps.Dock = System.Windows.Forms.DockStyle.Top;
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", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOps.Location = new System.Drawing.Point(0, 0);
this.lblOps.Location = new System.Drawing.Point(11, 11);
this.lblOps.Name = "lblOps";
this.lblOps.Size = new System.Drawing.Size(464, 28);
this.lblOps.Size = new System.Drawing.Size(468, 28);
this.lblOps.TabIndex = 0;
this.lblOps.Text = "Operation...";
this.lblOps.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblStep
//
this.lblStep.Dock = System.Windows.Forms.DockStyle.Top;
this.lblStep.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| 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(0, 28);
this.lblStep.Location = new System.Drawing.Point(11, 49);
this.lblStep.Name = "lblStep";
this.lblStep.Size = new System.Drawing.Size(464, 28);
this.lblStep.Size = new System.Drawing.Size(468, 37);
this.lblStep.TabIndex = 1;
this.lblStep.Text = "Step";
this.lblStep.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Waiting
@@ -57,7 +62,7 @@
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(464, 71);
this.ClientSize = new System.Drawing.Size(491, 97);
this.ControlBox = false;
this.Controls.Add(this.lblStep);
this.Controls.Add(this.lblOps);