This commit is contained in:
2020-04-27 20:55:03 +00:00
parent 825ea28b8d
commit cc06b2a0ab
22 changed files with 2936 additions and 18 deletions

View File

@@ -30,6 +30,7 @@
{
this.edOut = new System.Windows.Forms.TextBox();
this.btnClose = new System.Windows.Forms.Button();
this.lblCurrent = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// edOut
@@ -42,7 +43,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, 546);
this.edOut.Size = new System.Drawing.Size(870, 513);
this.edOut.TabIndex = 0;
//
// btnClose
@@ -59,6 +60,15 @@
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// lblCurrent
//
this.lblCurrent.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblCurrent.Location = new System.Drawing.Point(13, 529);
this.lblCurrent.Name = "lblCurrent";
this.lblCurrent.Size = new System.Drawing.Size(846, 23);
this.lblCurrent.TabIndex = 2;
//
// ProgressForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -66,13 +76,14 @@
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(870, 620);
this.ControlBox = false;
this.Controls.Add(this.lblCurrent);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.edOut);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "ProgressForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Dumping...";
this.Text = "Exporting...";
this.ResumeLayout(false);
this.PerformLayout();
@@ -82,5 +93,6 @@
private System.Windows.Forms.TextBox edOut;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Label lblCurrent;
}
}