This commit is contained in:
2020-05-11 21:19:58 +00:00
parent 4ef18044e7
commit 6d6c011fa3
8 changed files with 105 additions and 26 deletions

View File

@@ -34,6 +34,7 @@
this.edCurrent = new System.Windows.Forms.TextBox();
this.edSubOp = new System.Windows.Forms.TextBox();
this.btnCancel = new System.Windows.Forms.Button();
this.lblPreRelease = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// edOut
@@ -110,6 +111,19 @@
this.btnCancel.Visible = false;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// lblPreRelease
//
this.lblPreRelease.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblPreRelease.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.lblPreRelease.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblPreRelease.ForeColor = System.Drawing.Color.Blue;
this.lblPreRelease.Location = new System.Drawing.Point(205, 598);
this.lblPreRelease.Name = "lblPreRelease";
this.lblPreRelease.Size = new System.Drawing.Size(426, 37);
this.lblPreRelease.TabIndex = 39;
this.lblPreRelease.Text = "Pre-release 7.6-Alpha";
this.lblPreRelease.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// ProgressForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -117,6 +131,7 @@
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(870, 646);
this.ControlBox = false;
this.Controls.Add(this.lblPreRelease);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.edSubOp);
this.Controls.Add(this.edCurrent);
@@ -128,6 +143,7 @@
this.Name = "ProgressForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Exporting...";
this.Load += new System.EventHandler(this.ProgressForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
@@ -141,5 +157,6 @@
private System.Windows.Forms.TextBox edCurrent;
private System.Windows.Forms.TextBox edSubOp;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblPreRelease;
}
}