Files
cms_thermo_active/ThermalImageStreamerDemo/MainForm.Designer.cs
T
2021-02-09 12:42:16 +01:00

409 lines
20 KiB
C#

namespace ThermalImageStreamerDemo
{
partial class MainForm
{
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.discoveryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.disconnectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cameraToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.recorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripConnectionStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.panel1 = new System.Windows.Forms.Panel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel2 = new System.Windows.Forms.Panel();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.panel3 = new System.Windows.Forms.Panel();
this.chkPointSetup = new System.Windows.Forms.CheckBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.txtBC = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.txtAB = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.lblOrigD = new System.Windows.Forms.Label();
this.lblOrigA = new System.Windows.Forms.Label();
this.lblOrigC = new System.Windows.Forms.Label();
this.lblOrigB = new System.Windows.Forms.Label();
this.checkLive = new System.Windows.Forms.CheckBox();
this.btnAcquire = new System.Windows.Forms.Button();
this.labelTitle = new System.Windows.Forms.Label();
this.menuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.panel3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.cameraToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1000, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.discoveryToolStripMenuItem,
this.disconnectToolStripMenuItem,
this.openToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
//
// discoveryToolStripMenuItem
//
this.discoveryToolStripMenuItem.Name = "discoveryToolStripMenuItem";
this.discoveryToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
this.discoveryToolStripMenuItem.Text = "Connect...";
this.discoveryToolStripMenuItem.Click += new System.EventHandler(this.discoveryToolStripMenuItem_Click);
//
// disconnectToolStripMenuItem
//
this.disconnectToolStripMenuItem.Name = "disconnectToolStripMenuItem";
this.disconnectToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
this.disconnectToolStripMenuItem.Text = "Disconnect";
this.disconnectToolStripMenuItem.Click += new System.EventHandler(this.disconnectToolStripMenuItem_Click);
//
// openToolStripMenuItem
//
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
this.openToolStripMenuItem.Text = "Open...";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
// cameraToolStripMenuItem
//
this.cameraToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.recorderToolStripMenuItem});
this.cameraToolStripMenuItem.Enabled = false;
this.cameraToolStripMenuItem.Name = "cameraToolStripMenuItem";
this.cameraToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
this.cameraToolStripMenuItem.Text = "Camera";
//
// recorderToolStripMenuItem
//
this.recorderToolStripMenuItem.Name = "recorderToolStripMenuItem";
this.recorderToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
this.recorderToolStripMenuItem.Text = "Recorder...";
this.recorderToolStripMenuItem.Click += new System.EventHandler(this.recorderToolStripMenuItem_Click);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripConnectionStatus});
this.statusStrip1.Location = new System.Drawing.Point(0, 434);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1000, 22);
this.statusStrip1.TabIndex = 2;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripConnectionStatus
//
this.toolStripConnectionStatus.Name = "toolStripConnectionStatus";
this.toolStripConnectionStatus.Size = new System.Drawing.Size(79, 17);
this.toolStripConnectionStatus.Text = "Disconnected";
//
// panel1
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Location = new System.Drawing.Point(3, 23);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(395, 408);
this.panel1.TabIndex = 5;
//
// pictureBox1
//
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(395, 408);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 3;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// panel2
//
this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel2.Controls.Add(this.pictureBox2);
this.panel2.Location = new System.Drawing.Point(602, 23);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(395, 408);
this.panel2.TabIndex = 6;
//
// pictureBox2
//
this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox2.Location = new System.Drawing.Point(0, 0);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(395, 408);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox2.TabIndex = 5;
this.pictureBox2.TabStop = false;
//
// panel3
//
this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
this.panel3.BackColor = System.Drawing.SystemColors.ControlDark;
this.panel3.Controls.Add(this.chkPointSetup);
this.panel3.Controls.Add(this.groupBox2);
this.panel3.Controls.Add(this.groupBox1);
this.panel3.Controls.Add(this.checkLive);
this.panel3.Controls.Add(this.btnAcquire);
this.panel3.Controls.Add(this.labelTitle);
this.panel3.Location = new System.Drawing.Point(404, 23);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(192, 408);
this.panel3.TabIndex = 6;
//
// chkPointSetup
//
this.chkPointSetup.AutoSize = true;
this.chkPointSetup.Location = new System.Drawing.Point(8, 86);
this.chkPointSetup.Name = "chkPointSetup";
this.chkPointSetup.Size = new System.Drawing.Size(81, 17);
this.chkPointSetup.TabIndex = 6;
this.chkPointSetup.Text = "Point Setup";
this.chkPointSetup.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.txtBC);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.txtAB);
this.groupBox2.Location = new System.Drawing.Point(8, 214);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(175, 100);
this.groupBox2.TabIndex = 5;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "target";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(7, 49);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(24, 13);
this.label5.TabIndex = 5;
this.label5.Text = "B-C";
//
// txtBC
//
this.txtBC.Location = new System.Drawing.Point(69, 46);
this.txtBC.Name = "txtBC";
this.txtBC.Size = new System.Drawing.Size(100, 20);
this.txtBC.TabIndex = 4;
this.txtBC.Text = "800";
this.txtBC.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtBC.TextChanged += new System.EventHandler(this.txtBC_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(7, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(24, 13);
this.label1.TabIndex = 3;
this.label1.Text = "A-B";
//
// txtAB
//
this.txtAB.Location = new System.Drawing.Point(69, 19);
this.txtAB.Name = "txtAB";
this.txtAB.Size = new System.Drawing.Size(100, 20);
this.txtAB.TabIndex = 0;
this.txtAB.Text = "1200";
this.txtAB.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtAB.TextChanged += new System.EventHandler(this.txtAB_TextChanged);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lblOrigD);
this.groupBox1.Controls.Add(this.lblOrigA);
this.groupBox1.Controls.Add(this.lblOrigC);
this.groupBox1.Controls.Add(this.lblOrigB);
this.groupBox1.Location = new System.Drawing.Point(8, 126);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(175, 71);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "origin";
//
// lblOrigD
//
this.lblOrigD.AutoSize = true;
this.lblOrigD.Location = new System.Drawing.Point(96, 46);
this.lblOrigD.Name = "lblOrigD";
this.lblOrigD.Size = new System.Drawing.Size(15, 13);
this.lblOrigD.TabIndex = 3;
this.lblOrigD.Text = "D";
//
// lblOrigA
//
this.lblOrigA.AutoSize = true;
this.lblOrigA.Location = new System.Drawing.Point(7, 46);
this.lblOrigA.Name = "lblOrigA";
this.lblOrigA.Size = new System.Drawing.Size(14, 13);
this.lblOrigA.TabIndex = 2;
this.lblOrigA.Text = "A";
//
// lblOrigC
//
this.lblOrigC.AutoSize = true;
this.lblOrigC.Location = new System.Drawing.Point(96, 20);
this.lblOrigC.Name = "lblOrigC";
this.lblOrigC.Size = new System.Drawing.Size(14, 13);
this.lblOrigC.TabIndex = 1;
this.lblOrigC.Text = "C";
//
// lblOrigB
//
this.lblOrigB.AutoSize = true;
this.lblOrigB.Location = new System.Drawing.Point(7, 20);
this.lblOrigB.Name = "lblOrigB";
this.lblOrigB.Size = new System.Drawing.Size(14, 13);
this.lblOrigB.TabIndex = 0;
this.lblOrigB.Text = "B";
//
// checkLive
//
this.checkLive.AutoSize = true;
this.checkLive.Location = new System.Drawing.Point(128, 48);
this.checkLive.Name = "checkLive";
this.checkLive.Size = new System.Drawing.Size(42, 17);
this.checkLive.TabIndex = 2;
this.checkLive.Text = "live";
this.checkLive.UseVisualStyleBackColor = true;
this.checkLive.CheckedChanged += new System.EventHandler(this.checkLive_CheckedChanged);
//
// btnAcquire
//
this.btnAcquire.Location = new System.Drawing.Point(8, 44);
this.btnAcquire.Name = "btnAcquire";
this.btnAcquire.Size = new System.Drawing.Size(99, 23);
this.btnAcquire.TabIndex = 1;
this.btnAcquire.Text = "Acquire";
this.btnAcquire.UseVisualStyleBackColor = true;
this.btnAcquire.Click += new System.EventHandler(this.btnAcquire_Click);
//
// labelTitle
//
this.labelTitle.AutoSize = true;
this.labelTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelTitle.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.labelTitle.Location = new System.Drawing.Point(5, 8);
this.labelTitle.Name = "labelTitle";
this.labelTitle.Size = new System.Drawing.Size(118, 13);
this.labelTitle.TabIndex = 0;
this.labelTitle.Text = "ThermoCam SETUP";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1000, 456);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
this.Text = "Streamer Demo";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.Load += new System.EventHandler(this.MainForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem discoveryToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cameraToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem recorderToolStripMenuItem;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel toolStripConnectionStatus;
private System.Windows.Forms.ToolStripMenuItem disconnectToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.Label labelTitle;
private System.Windows.Forms.CheckBox checkLive;
private System.Windows.Forms.Button btnAcquire;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label lblOrigD;
private System.Windows.Forms.Label lblOrigA;
private System.Windows.Forms.Label lblOrigC;
private System.Windows.Forms.Label lblOrigB;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtBC;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtAB;
private System.Windows.Forms.CheckBox chkPointSetup;
}
}