TakePictureForm.Designer.cs 5.83 KB
namespace MoyaSignup
{
    partial class TakePictureForm
    {
        /// <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.pictureBox = new System.Windows.Forms.PictureBox();
            this.btnTakePic = new System.Windows.Forms.Button();
            this.pictureTakenLabel = new System.Windows.Forms.Label();
            this.secondsLabel = new System.Windows.Forms.Label();
            this.takePictureTimer = new System.Windows.Forms.Timer(this.components);
            this.captureTimer = new System.Windows.Forms.Timer(this.components);
            this.selectCamTimer = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
            this.SuspendLayout();
            // 
            // pictureBox
            // 
            this.pictureBox.Location = new System.Drawing.Point(12, 12);
            this.pictureBox.Name = "pictureBox";
            this.pictureBox.Size = new System.Drawing.Size(640, 360);
            this.pictureBox.TabIndex = 0;
            this.pictureBox.TabStop = false;
            // 
            // btnTakePic
            // 
            this.btnTakePic.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnTakePic.Location = new System.Drawing.Point(268, 378);
            this.btnTakePic.Name = "btnTakePic";
            this.btnTakePic.Size = new System.Drawing.Size(129, 32);
            this.btnTakePic.TabIndex = 1;
            this.btnTakePic.Text = "Ota kuva";
            this.btnTakePic.UseVisualStyleBackColor = true;
            this.btnTakePic.Click += new System.EventHandler(this.btnTakePic_Click);
            // 
            // pictureTakenLabel
            // 
            this.pictureTakenLabel.AutoSize = true;
            this.pictureTakenLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.pictureTakenLabel.Location = new System.Drawing.Point(210, 417);
            this.pictureTakenLabel.Name = "pictureTakenLabel";
            this.pictureTakenLabel.Size = new System.Drawing.Size(244, 20);
            this.pictureTakenLabel.TabIndex = 2;
            this.pictureTakenLabel.Text = "Kuva otetaan automaattisesti";
            this.pictureTakenLabel.Visible = false;
            // 
            // secondsLabel
            // 
            this.secondsLabel.AutoSize = true;
            this.secondsLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.secondsLabel.Location = new System.Drawing.Point(288, 437);
            this.secondsLabel.Name = "secondsLabel";
            this.secondsLabel.Size = new System.Drawing.Size(88, 20);
            this.secondsLabel.TabIndex = 3;
            this.secondsLabel.Text = "3s päästä";
            this.secondsLabel.Visible = false;
            // 
            // takePictureTimer
            // 
            this.takePictureTimer.Interval = 1000;
            this.takePictureTimer.Tick += new System.EventHandler(this.takePictureTimer_Tick);
            // 
            // captureTimer
            // 
            this.captureTimer.Tick += new System.EventHandler(this.captureTimer_Tick);
            // 
            // selectCamTimer
            // 
            this.selectCamTimer.Interval = 5000;
            this.selectCamTimer.Tick += new System.EventHandler(this.selectCamTimer_Tick);
            // 
            // TakePictureForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(660, 461);
            this.Controls.Add(this.secondsLabel);
            this.Controls.Add(this.pictureTakenLabel);
            this.Controls.Add(this.btnTakePic);
            this.Controls.Add(this.pictureBox);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TakePictureForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Ota kuva";
            this.TopMost = true;
            this.Load += new System.EventHandler(this.TakePictureForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.PictureBox pictureBox;
        private System.Windows.Forms.Button btnTakePic;
        private System.Windows.Forms.Label pictureTakenLabel;
        private System.Windows.Forms.Label secondsLabel;
        private System.Windows.Forms.Timer takePictureTimer;
        private System.Windows.Forms.Timer captureTimer;
        private System.Windows.Forms.Timer selectCamTimer;
    }
}