Improved functionnality of the main form

This commit is contained in:
2023-05-22 10:20:54 +02:00
parent 96de5485fe
commit e650072213
5 changed files with 128 additions and 47 deletions
+14 -1
View File
@@ -33,6 +33,7 @@
this.btnStartDecoding = new System.Windows.Forms.Button();
this.pbxResult = new System.Windows.Forms.PictureBox();
this.btnStopUpdating = new System.Windows.Forms.Button();
this.btnResetEmulator = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pbxResult)).BeginInit();
this.SuspendLayout();
//
@@ -84,11 +85,22 @@
this.btnStopUpdating.UseVisualStyleBackColor = true;
this.btnStopUpdating.Click += new System.EventHandler(this.btnStopUpdating_Click);
//
// btnResetEmulator
//
this.btnResetEmulator.Location = new System.Drawing.Point(336, 12);
this.btnResetEmulator.Name = "btnResetEmulator";
this.btnResetEmulator.Size = new System.Drawing.Size(162, 53);
this.btnResetEmulator.TabIndex = 5;
this.btnResetEmulator.Text = "Reset emulator";
this.btnResetEmulator.UseVisualStyleBackColor = true;
this.btnResetEmulator.Click += new System.EventHandler(this.button1_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 335);
this.ClientSize = new System.Drawing.Size(799, 335);
this.Controls.Add(this.btnResetEmulator);
this.Controls.Add(this.btnStopUpdating);
this.Controls.Add(this.pbxResult);
this.Controls.Add(this.btnStartDecoding);
@@ -111,6 +123,7 @@
private System.Windows.Forms.Button btnStartDecoding;
private System.Windows.Forms.PictureBox pbxResult;
private System.Windows.Forms.Button btnStopUpdating;
private System.Windows.Forms.Button btnResetEmulator;
}
}