162 lines
7.4 KiB
C#
162 lines
7.4 KiB
C#
///
|
|
/// Copyright (c) 2017 Senus Slovensko a.s.
|
|
///
|
|
namespace TBF.UI.Camera
|
|
{
|
|
partial class CameraPictureFullCtrl
|
|
{
|
|
/// <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 Component 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.captionLabel = new System.Windows.Forms.Label();
|
|
this.ledPictureBox = new System.Windows.Forms.PictureBox();
|
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
|
this.stopButton = new System.Windows.Forms.Button();
|
|
this.saveButton = new System.Windows.Forms.Button();
|
|
this.maxButton = new System.Windows.Forms.Button();
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
((System.ComponentModel.ISupportInitialize)(this.ledPictureBox)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// captionLabel
|
|
//
|
|
this.captionLabel.AutoSize = true;
|
|
this.captionLabel.ForeColor = System.Drawing.Color.Black;
|
|
this.captionLabel.Location = new System.Drawing.Point(16, 2);
|
|
this.captionLabel.Name = "captionLabel";
|
|
this.captionLabel.Size = new System.Drawing.Size(86, 13);
|
|
this.captionLabel.TabIndex = 6;
|
|
this.captionLabel.Text = "No info available";
|
|
//
|
|
// ledPictureBox
|
|
//
|
|
this.ledPictureBox.Location = new System.Drawing.Point(4, 2);
|
|
this.ledPictureBox.Name = "ledPictureBox";
|
|
this.ledPictureBox.Size = new System.Drawing.Size(12, 12);
|
|
this.ledPictureBox.TabIndex = 5;
|
|
this.ledPictureBox.TabStop = false;
|
|
//
|
|
// pictureBox
|
|
//
|
|
this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pictureBox.Location = new System.Drawing.Point(0, 0);
|
|
this.pictureBox.Name = "pictureBox";
|
|
this.pictureBox.Size = new System.Drawing.Size(964, 720);
|
|
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
|
this.pictureBox.TabIndex = 0;
|
|
this.pictureBox.TabStop = false;
|
|
//
|
|
// stopButton
|
|
//
|
|
this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.stopButton.Location = new System.Drawing.Point(890, 0);
|
|
this.stopButton.Name = "stopButton";
|
|
this.stopButton.Size = new System.Drawing.Size(24, 18);
|
|
this.stopButton.TabIndex = 7;
|
|
this.stopButton.UseVisualStyleBackColor = true;
|
|
this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
|
//
|
|
// saveButton
|
|
//
|
|
this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.saveButton.Location = new System.Drawing.Point(915, 0);
|
|
this.saveButton.Name = "saveButton";
|
|
this.saveButton.Size = new System.Drawing.Size(24, 18);
|
|
this.saveButton.TabIndex = 8;
|
|
this.saveButton.UseVisualStyleBackColor = true;
|
|
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
|
|
//
|
|
// maxButton
|
|
//
|
|
this.maxButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.maxButton.Location = new System.Drawing.Point(940, 0);
|
|
this.maxButton.Name = "maxButton";
|
|
this.maxButton.Size = new System.Drawing.Size(24, 18);
|
|
this.maxButton.TabIndex = 9;
|
|
this.maxButton.UseVisualStyleBackColor = true;
|
|
this.maxButton.Click += new System.EventHandler(this.maxButton_Click);
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.IsSplitterFixed = true;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.captionLabel);
|
|
this.splitContainer1.Panel1.Controls.Add(this.maxButton);
|
|
this.splitContainer1.Panel1.Controls.Add(this.ledPictureBox);
|
|
this.splitContainer1.Panel1.Controls.Add(this.saveButton);
|
|
this.splitContainer1.Panel1.Controls.Add(this.stopButton);
|
|
this.splitContainer1.Panel1MinSize = 18;
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.pictureBox);
|
|
this.splitContainer1.Size = new System.Drawing.Size(964, 742);
|
|
this.splitContainer1.SplitterDistance = 18;
|
|
this.splitContainer1.TabIndex = 10;
|
|
//
|
|
// CameraPictureFullCtrl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.SystemColors.ControlLight;
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Name = "CameraPictureFullCtrl";
|
|
this.Size = new System.Drawing.Size(964, 742);
|
|
((System.ComponentModel.ISupportInitialize)(this.ledPictureBox)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel1.PerformLayout();
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox ledPictureBox;
|
|
private System.Windows.Forms.Label captionLabel;
|
|
private System.Windows.Forms.PictureBox pictureBox;
|
|
private System.Windows.Forms.Button stopButton;
|
|
private System.Windows.Forms.Button saveButton;
|
|
private System.Windows.Forms.Button maxButton;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
}
|
|
}
|