This commit is contained in:
EggMan20339 2024-02-01 09:58:06 -05:00
parent fd5d30dcb7
commit 6729fed857

View File

@ -56,7 +56,7 @@
this.lblNumIncorrect = new System.Windows.Forms.Label();
this.lblImage = new System.Windows.Forms.Label();
this.btnExit = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.btnPrint = new System.Windows.Forms.Button();
this.grpLevels.SuspendLayout();
this.grpOperations.SuspendLayout();
this.pnlSummary.SuspendLayout();
@ -317,22 +317,22 @@
this.btnExit.Text = "Exit";
this.btnExit.UseVisualStyleBackColor = true;
//
// button1
// btnPrint
//
this.button1.Location = new System.Drawing.Point(546, 371);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(106, 34);
this.button1.TabIndex = 6;
this.button1.Text = "Exit";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
this.btnPrint.Location = new System.Drawing.Point(546, 371);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(106, 34);
this.btnPrint.TabIndex = 6;
this.btnPrint.Text = "Print";
this.btnPrint.UseVisualStyleBackColor = true;
this.btnPrint.Click += new System.EventHandler(this.button1_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.button1);
this.Controls.Add(this.btnPrint);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.chkShowSummary);
this.Controls.Add(this.pnlCalc);
@ -350,7 +350,7 @@
}
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnPrint;
private System.Windows.Forms.Label lblImage;