235 lines
10 KiB
C#
235 lines
10 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();
|
|
this.lsbZones = new System.Windows.Forms.ListBox();
|
|
this.btnCreateZone = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.lsbZoneTypes = new System.Windows.Forms.ListBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
((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(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);
|
|
//
|
|
// pbxOutput
|
|
//
|
|
this.pbxOutput.Location = new System.Drawing.Point(978, 12);
|
|
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(818, 425);
|
|
this.btnStart.Name = "btnStart";
|
|
this.btnStart.Size = new System.Drawing.Size(154, 37);
|
|
this.btnStart.TabIndex = 2;
|
|
this.btnStart.Text = "Start recording";
|
|
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(818, 468);
|
|
this.lsbScreens.Name = "lsbScreens";
|
|
this.lsbScreens.Size = new System.Drawing.Size(154, 84);
|
|
this.lsbScreens.TabIndex = 3;
|
|
this.lsbScreens.SelectedIndexChanged += new System.EventHandler(this.lsbScreens_SelectedIndexChanged);
|
|
//
|
|
// tbxResult
|
|
//
|
|
this.tbxResult.Location = new System.Drawing.Point(12, 581);
|
|
this.tbxResult.Multiline = true;
|
|
this.tbxResult.Name = "tbxResult";
|
|
this.tbxResult.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.tbxResult.Size = new System.Drawing.Size(480, 190);
|
|
this.tbxResult.TabIndex = 4;
|
|
//
|
|
// lsbZones
|
|
//
|
|
this.lsbZones.FormattingEnabled = true;
|
|
this.lsbZones.ItemHeight = 16;
|
|
this.lsbZones.Location = new System.Drawing.Point(978, 304);
|
|
this.lsbZones.Name = "lsbZones";
|
|
this.lsbZones.Size = new System.Drawing.Size(225, 100);
|
|
this.lsbZones.TabIndex = 5;
|
|
this.lsbZones.SelectedIndexChanged += new System.EventHandler(this.lsbZones_SelectedIndexChanged);
|
|
//
|
|
// btnCreateZone
|
|
//
|
|
this.btnCreateZone.Location = new System.Drawing.Point(978, 410);
|
|
this.btnCreateZone.Name = "btnCreateZone";
|
|
this.btnCreateZone.Size = new System.Drawing.Size(482, 37);
|
|
this.btnCreateZone.TabIndex = 6;
|
|
this.btnCreateZone.Text = "Create Zone";
|
|
this.btnCreateZone.UseVisualStyleBackColor = true;
|
|
this.btnCreateZone.Click += new System.EventHandler(this.btnCreateZone_Click);
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(978, 453);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(482, 37);
|
|
this.button2.TabIndex = 7;
|
|
this.button2.Text = "Delete Zone";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// lsbZoneTypes
|
|
//
|
|
this.lsbZoneTypes.FormattingEnabled = true;
|
|
this.lsbZoneTypes.ItemHeight = 16;
|
|
this.lsbZoneTypes.Location = new System.Drawing.Point(1233, 304);
|
|
this.lsbZoneTypes.Name = "lsbZoneTypes";
|
|
this.lsbZoneTypes.Size = new System.Drawing.Size(225, 100);
|
|
this.lsbZoneTypes.TabIndex = 8;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(978, 285);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(45, 16);
|
|
this.label1.TabIndex = 9;
|
|
this.label1.Text = "Zones";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(1230, 285);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(74, 16);
|
|
this.label2.TabIndex = 10;
|
|
this.label2.Text = "Zone types";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(12, 555);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(69, 16);
|
|
this.label3.TabIndex = 11;
|
|
this.label3.Text = "Raw result";
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(492, 581);
|
|
this.textBox1.Multiline = true;
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.textBox1.Size = new System.Drawing.Size(480, 190);
|
|
this.textBox1.TabIndex = 12;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(489, 555);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(104, 16);
|
|
this.label4.TabIndex = 13;
|
|
this.label4.Text = "Computed result";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1472, 783);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.lsbZoneTypes);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.btnCreateZone);
|
|
this.Controls.Add(this.lsbZones);
|
|
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.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;
|
|
private System.Windows.Forms.ListBox lsbZones;
|
|
private System.Windows.Forms.Button btnCreateZone;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.ListBox lsbZoneTypes;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Label label4;
|
|
}
|
|
}
|
|
|