113 lines
4.4 KiB
C#
113 lines
4.4 KiB
C#
namespace OCR_Decode
|
|
{
|
|
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.pbxImage = new System.Windows.Forms.PictureBox();
|
|
this.tbxResult = new System.Windows.Forms.TextBox();
|
|
this.btnPrevious = new System.Windows.Forms.Button();
|
|
this.btnNext = new System.Windows.Forms.Button();
|
|
this.lblFileName = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.pbxImage)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// pbxImage
|
|
//
|
|
this.pbxImage.Location = new System.Drawing.Point(12, 12);
|
|
this.pbxImage.Name = "pbxImage";
|
|
this.pbxImage.Size = new System.Drawing.Size(1231, 724);
|
|
this.pbxImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
this.pbxImage.TabIndex = 0;
|
|
this.pbxImage.TabStop = false;
|
|
//
|
|
// tbxResult
|
|
//
|
|
this.tbxResult.Location = new System.Drawing.Point(719, 742);
|
|
this.tbxResult.Multiline = true;
|
|
this.tbxResult.Name = "tbxResult";
|
|
this.tbxResult.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.tbxResult.Size = new System.Drawing.Size(571, 255);
|
|
this.tbxResult.TabIndex = 1;
|
|
//
|
|
// btnPrevious
|
|
//
|
|
this.btnPrevious.Location = new System.Drawing.Point(12, 745);
|
|
this.btnPrevious.Name = "btnPrevious";
|
|
this.btnPrevious.Size = new System.Drawing.Size(228, 72);
|
|
this.btnPrevious.TabIndex = 2;
|
|
this.btnPrevious.Text = "Previous";
|
|
this.btnPrevious.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnNext
|
|
//
|
|
this.btnNext.Location = new System.Drawing.Point(12, 823);
|
|
this.btnNext.Name = "btnNext";
|
|
this.btnNext.Size = new System.Drawing.Size(228, 72);
|
|
this.btnNext.TabIndex = 3;
|
|
this.btnNext.Text = "Next";
|
|
this.btnNext.UseVisualStyleBackColor = true;
|
|
//
|
|
// lblFileName
|
|
//
|
|
this.lblFileName.AutoSize = true;
|
|
this.lblFileName.Location = new System.Drawing.Point(12, 898);
|
|
this.lblFileName.Name = "lblFileName";
|
|
this.lblFileName.Size = new System.Drawing.Size(66, 16);
|
|
this.lblFileName.TabIndex = 4;
|
|
this.lblFileName.Text = "FileName";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1255, 1009);
|
|
this.Controls.Add(this.lblFileName);
|
|
this.Controls.Add(this.btnNext);
|
|
this.Controls.Add(this.btnPrevious);
|
|
this.Controls.Add(this.tbxResult);
|
|
this.Controls.Add(this.pbxImage);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.pbxImage)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pbxImage;
|
|
private System.Windows.Forms.TextBox tbxResult;
|
|
private System.Windows.Forms.Button btnPrevious;
|
|
private System.Windows.Forms.Button btnNext;
|
|
private System.Windows.Forms.Label lblFileName;
|
|
}
|
|
}
|
|
|