This commit is contained in:
2022-09-23 23:52:18 +00:00
parent abc6230834
commit 810a7a7c50
5 changed files with 34 additions and 8 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.btnCopy = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// edOut
@@ -54,7 +55,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, 603);
this.btnClose.Location = new System.Drawing.Point(737, 588);
this.btnClose.Margin = new System.Windows.Forms.Padding(2);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(82, 32);
@@ -100,7 +101,7 @@
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Enabled = false;
this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnCancel.Location = new System.Drawing.Point(16, 603);
this.btnCancel.Location = new System.Drawing.Point(27, 588);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(82, 32);
@@ -110,6 +111,17 @@
this.btnCancel.Visible = false;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnCopy
//
this.btnCopy.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnCopy.Location = new System.Drawing.Point(314, 588);
this.btnCopy.Name = "btnCopy";
this.btnCopy.Size = new System.Drawing.Size(207, 36);
this.btnCopy.TabIndex = 6;
this.btnCopy.Text = "Copy log to clipboard";
this.btnCopy.UseVisualStyleBackColor = true;
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
//
// ProgressForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -117,6 +129,7 @@
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(870, 646);
this.ControlBox = false;
this.Controls.Add(this.btnCopy);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.edSubOp);
this.Controls.Add(this.edCurrent);
@@ -142,5 +155,6 @@
private System.Windows.Forms.TextBox edCurrent;
private System.Windows.Forms.TextBox edSubOp;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnCopy;
}
}