First time I found helpfull to push this to git
This commit is contained in:
Generated
+132
@@ -0,0 +1,132 @@
|
||||
namespace OCR_tester
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.pbxInput = new System.Windows.Forms.PictureBox();
|
||||
this.btnCreateZone = new System.Windows.Forms.Button();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.btnCreateWindow = new System.Windows.Forms.Button();
|
||||
this.btnDeleteZone = new System.Windows.Forms.Button();
|
||||
this.btnDeleteWindow = new System.Windows.Forms.Button();
|
||||
this.panel2 = new System.Windows.Forms.Panel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// pbxInput
|
||||
//
|
||||
this.pbxInput.Location = new System.Drawing.Point(12, 12);
|
||||
this.pbxInput.Name = "pbxInput";
|
||||
this.pbxInput.Size = new System.Drawing.Size(960, 540);
|
||||
this.pbxInput.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pbxInput.TabIndex = 0;
|
||||
this.pbxInput.TabStop = false;
|
||||
this.pbxInput.Click += new System.EventHandler(this.pbxInput_Click);
|
||||
//
|
||||
// btnCreateZone
|
||||
//
|
||||
this.btnCreateZone.Location = new System.Drawing.Point(978, 12);
|
||||
this.btnCreateZone.Name = "btnCreateZone";
|
||||
this.btnCreateZone.Size = new System.Drawing.Size(280, 47);
|
||||
this.btnCreateZone.TabIndex = 3;
|
||||
this.btnCreateZone.Text = "Create Zone";
|
||||
this.btnCreateZone.UseVisualStyleBackColor = true;
|
||||
this.btnCreateZone.Click += new System.EventHandler(this.btnCreateZone_Click);
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.Location = new System.Drawing.Point(984, 118);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(268, 154);
|
||||
this.panel1.TabIndex = 4;
|
||||
//
|
||||
// btnCreateWindow
|
||||
//
|
||||
this.btnCreateWindow.Location = new System.Drawing.Point(978, 292);
|
||||
this.btnCreateWindow.Name = "btnCreateWindow";
|
||||
this.btnCreateWindow.Size = new System.Drawing.Size(280, 47);
|
||||
this.btnCreateWindow.TabIndex = 5;
|
||||
this.btnCreateWindow.Text = "Create Window";
|
||||
this.btnCreateWindow.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// btnDeleteZone
|
||||
//
|
||||
this.btnDeleteZone.Location = new System.Drawing.Point(978, 65);
|
||||
this.btnDeleteZone.Name = "btnDeleteZone";
|
||||
this.btnDeleteZone.Size = new System.Drawing.Size(280, 47);
|
||||
this.btnDeleteZone.TabIndex = 6;
|
||||
this.btnDeleteZone.Text = "Delete Zone";
|
||||
this.btnDeleteZone.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// btnDeleteWindow
|
||||
//
|
||||
this.btnDeleteWindow.Location = new System.Drawing.Point(978, 345);
|
||||
this.btnDeleteWindow.Name = "btnDeleteWindow";
|
||||
this.btnDeleteWindow.Size = new System.Drawing.Size(280, 47);
|
||||
this.btnDeleteWindow.TabIndex = 7;
|
||||
this.btnDeleteWindow.Text = "Delete Window";
|
||||
this.btnDeleteWindow.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// panel2
|
||||
//
|
||||
this.panel2.Location = new System.Drawing.Point(984, 398);
|
||||
this.panel2.Name = "panel2";
|
||||
this.panel2.Size = new System.Drawing.Size(268, 154);
|
||||
this.panel2.TabIndex = 5;
|
||||
//
|
||||
// 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.Controls.Add(this.panel2);
|
||||
this.Controls.Add(this.btnDeleteWindow);
|
||||
this.Controls.Add(this.btnDeleteZone);
|
||||
this.Controls.Add(this.btnCreateWindow);
|
||||
this.Controls.Add(this.panel1);
|
||||
this.Controls.Add(this.btnCreateZone);
|
||||
this.Controls.Add(this.pbxInput);
|
||||
this.Name = "Form1";
|
||||
this.Text = "OCR tester";
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.PictureBox pbxInput;
|
||||
private System.Windows.Forms.Button btnCreateZone;
|
||||
private System.Windows.Forms.Panel panel1;
|
||||
private System.Windows.Forms.Button btnCreateWindow;
|
||||
private System.Windows.Forms.Button btnDeleteZone;
|
||||
private System.Windows.Forms.Button btnDeleteWindow;
|
||||
private System.Windows.Forms.Panel panel2;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user