tbf/TBF/UI/Camera/CameraPictureCtrl.Designer.cs

128 lines
5.2 KiB
C#

///
/// Copyright (c) 2013-2015 Senus Slovensko a.s.
///
namespace TBF.UI.Camera
{
partial class CameraPictureCtrl
{
/// <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();
((System.ComponentModel.ISupportInitialize)(this.ledPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// captionLabel
//
this.captionLabel.AutoSize = true;
this.captionLabel.ForeColor = System.Drawing.Color.Black;
this.captionLabel.Location = new System.Drawing.Point(16, 4);
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(2, 4);
this.ledPictureBox.Name = "ledPictureBox";
this.ledPictureBox.Size = new System.Drawing.Size(12, 12);
this.ledPictureBox.TabIndex = 5;
this.ledPictureBox.TabStop = false;
//
// pictureBox
//
this.pictureBox.Location = new System.Drawing.Point(2, 20);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(320, 240);
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
//
// stopButton
//
this.stopButton.Location = new System.Drawing.Point(249, 1);
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.Location = new System.Drawing.Point(274, 1);
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.Location = new System.Drawing.Point(299, 1);
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);
//
// CameraPictureCtrl
//
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.maxButton);
this.Controls.Add(this.saveButton);
this.Controls.Add(this.stopButton);
this.Controls.Add(this.pictureBox);
this.Controls.Add(this.captionLabel);
this.Controls.Add(this.ledPictureBox);
this.Name = "CameraPictureCtrl";
this.Size = new System.Drawing.Size(324, 262);
((System.ComponentModel.ISupportInitialize)(this.ledPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#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;
}
}