Files
SharpTesseract/TestVideo/Form1.Designer.cs
2022-10-15 10:10:12 +02:00

124 lines
5.0 KiB
C#

namespace TestVideo
{
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.components = new System.ComponentModel.Container();
this.pbxInput = new System.Windows.Forms.PictureBox();
this.pbxOutput = new System.Windows.Forms.PictureBox();
this.btnStart = new System.Windows.Forms.Button();
this.tmrScreenshots = new System.Windows.Forms.Timer(this.components);
this.lsbScreens = new System.Windows.Forms.ListBox();
this.tbxResult = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbxOutput)).BeginInit();
this.SuspendLayout();
//
// pbxInput
//
this.pbxInput.Location = new System.Drawing.Point(12, 12);
this.pbxInput.Name = "pbxInput";
this.pbxInput.Size = new System.Drawing.Size(480, 270);
this.pbxInput.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbxInput.TabIndex = 0;
this.pbxInput.TabStop = false;
//
// pbxOutput
//
this.pbxOutput.Location = new System.Drawing.Point(12, 288);
this.pbxOutput.Name = "pbxOutput";
this.pbxOutput.Size = new System.Drawing.Size(480, 270);
this.pbxOutput.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbxOutput.TabIndex = 1;
this.pbxOutput.TabStop = false;
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(495, 245);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(157, 37);
this.btnStart.TabIndex = 2;
this.btnStart.Text = "Start";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// tmrScreenshots
//
this.tmrScreenshots.Interval = 5000;
this.tmrScreenshots.Tick += new System.EventHandler(this.tmrScreenshots_Tick);
//
// lsbScreens
//
this.lsbScreens.FormattingEnabled = true;
this.lsbScreens.ItemHeight = 16;
this.lsbScreens.Location = new System.Drawing.Point(498, 12);
this.lsbScreens.Name = "lsbScreens";
this.lsbScreens.Size = new System.Drawing.Size(154, 228);
this.lsbScreens.TabIndex = 3;
this.lsbScreens.SelectedIndexChanged += new System.EventHandler(this.lsbScreens_SelectedIndexChanged);
//
// tbxResult
//
this.tbxResult.Location = new System.Drawing.Point(498, 288);
this.tbxResult.Multiline = true;
this.tbxResult.Name = "tbxResult";
this.tbxResult.Size = new System.Drawing.Size(147, 270);
this.tbxResult.TabIndex = 4;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(657, 565);
this.Controls.Add(this.tbxResult);
this.Controls.Add(this.lsbScreens);
this.Controls.Add(this.btnStart);
this.Controls.Add(this.pbxOutput);
this.Controls.Add(this.pbxInput);
this.Enabled = false;
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pbxOutput)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbxInput;
private System.Windows.Forms.PictureBox pbxOutput;
private System.Windows.Forms.Button btnStart;
private System.Windows.Forms.Timer tmrScreenshots;
private System.Windows.Forms.ListBox lsbScreens;
private System.Windows.Forms.TextBox tbxResult;
}
}