Cleaned up a little bit to make room for the windows

This commit is contained in:
2023-03-31 14:36:28 +02:00
parent dc6a6ee74d
commit d60de1a0c0
3 changed files with 93 additions and 42 deletions
+17 -1
View File
@@ -35,7 +35,9 @@
this.btnDeleteZone = new System.Windows.Forms.Button();
this.btnDeleteWindow = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.pbxWindow = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbxWindow)).BeginInit();
this.SuspendLayout();
//
// pbxInput
@@ -73,6 +75,7 @@
this.btnCreateWindow.TabIndex = 5;
this.btnCreateWindow.Text = "Create Window";
this.btnCreateWindow.UseVisualStyleBackColor = true;
this.btnCreateWindow.Click += new System.EventHandler(this.btnCreateWindow_Click);
//
// btnDeleteZone
//
@@ -82,6 +85,7 @@
this.btnDeleteZone.TabIndex = 6;
this.btnDeleteZone.Text = "Delete Zone";
this.btnDeleteZone.UseVisualStyleBackColor = true;
this.btnDeleteZone.Click += new System.EventHandler(this.btnDeleteZone_Click);
//
// btnDeleteWindow
//
@@ -99,11 +103,21 @@
this.panel2.Size = new System.Drawing.Size(268, 154);
this.panel2.TabIndex = 5;
//
// pbxWindow
//
this.pbxWindow.Location = new System.Drawing.Point(12, 558);
this.pbxWindow.Name = "pbxWindow";
this.pbxWindow.Size = new System.Drawing.Size(960, 42);
this.pbxWindow.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbxWindow.TabIndex = 8;
this.pbxWindow.TabStop = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1264, 558);
this.ClientSize = new System.Drawing.Size(1264, 612);
this.Controls.Add(this.pbxWindow);
this.Controls.Add(this.panel2);
this.Controls.Add(this.btnDeleteWindow);
this.Controls.Add(this.btnDeleteZone);
@@ -114,6 +128,7 @@
this.Name = "Form1";
this.Text = "OCR tester";
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pbxWindow)).EndInit();
this.ResumeLayout(false);
}
@@ -127,6 +142,7 @@
private System.Windows.Forms.Button btnDeleteZone;
private System.Windows.Forms.Button btnDeleteWindow;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.PictureBox pbxWindow;
}
}