Files
OCR_TEST/OCR_tester/Form1.Designer.cs
T

149 lines
6.4 KiB
C#

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();
this.pbxWindow = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbxWindow)).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;
this.btnCreateWindow.Click += new System.EventHandler(this.btnCreateWindow_Click);
//
// 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;
this.btnDeleteZone.Click += new System.EventHandler(this.btnDeleteZone_Click);
//
// 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;
//
// 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, 612);
this.Controls.Add(this.pbxWindow);
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();
((System.ComponentModel.ISupportInitialize)(this.pbxWindow)).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;
private System.Windows.Forms.PictureBox pbxWindow;
}
}