This commit is contained in:
2020-04-29 18:58:36 +00:00
parent 23d69ae1d0
commit 0abc8de546
4 changed files with 240 additions and 208 deletions

View File

@@ -31,6 +31,8 @@
this.edOut = new System.Windows.Forms.TextBox();
this.btnClose = new System.Windows.Forms.Button();
this.lblCurrent = new System.Windows.Forms.Label();
this.edCurrent = new System.Windows.Forms.TextBox();
this.edSubOp = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// edOut
@@ -43,7 +45,7 @@
this.edOut.Name = "edOut";
this.edOut.ReadOnly = true;
this.edOut.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.edOut.Size = new System.Drawing.Size(870, 513);
this.edOut.Size = new System.Drawing.Size(870, 461);
this.edOut.TabIndex = 0;
//
// btnClose
@@ -51,7 +53,7 @@
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnClose.Location = new System.Drawing.Point(777, 577);
this.btnClose.Location = new System.Drawing.Point(777, 603);
this.btnClose.Margin = new System.Windows.Forms.Padding(2);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(82, 32);
@@ -69,13 +71,37 @@
this.lblCurrent.Size = new System.Drawing.Size(846, 23);
this.lblCurrent.TabIndex = 2;
//
// edCurrent
//
this.edCurrent.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.edCurrent.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.edCurrent.Location = new System.Drawing.Point(0, 504);
this.edCurrent.Name = "edCurrent";
this.edCurrent.ReadOnly = true;
this.edCurrent.Size = new System.Drawing.Size(870, 22);
this.edCurrent.TabIndex = 3;
//
// edSubOp
//
this.edSubOp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.edSubOp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.edSubOp.Location = new System.Drawing.Point(0, 532);
this.edSubOp.Name = "edSubOp";
this.edSubOp.ReadOnly = true;
this.edSubOp.Size = new System.Drawing.Size(870, 22);
this.edSubOp.TabIndex = 4;
//
// ProgressForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(870, 620);
this.ClientSize = new System.Drawing.Size(870, 646);
this.ControlBox = false;
this.Controls.Add(this.edSubOp);
this.Controls.Add(this.edCurrent);
this.Controls.Add(this.lblCurrent);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.edOut);
@@ -94,5 +120,7 @@
private System.Windows.Forms.TextBox edOut;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Label lblCurrent;
private System.Windows.Forms.TextBox edCurrent;
private System.Windows.Forms.TextBox edSubOp;
}
}