Cam-Cording_Snapshot_Pixel-.../Part 1 - Record Video/RecordVideo.Designer.cs
Muhammad Anas Rashid dc74d52a7d All Files
2016-03-18 23:51:00 +05:00

85 lines
3.4 KiB
C#

namespace HCI_Assignment_1
{
partial class RecordVideo
{
/// <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.toggleButton = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// toggleButton
//
this.toggleButton.AutoSize = true;
this.toggleButton.Location = new System.Drawing.Point(5, 498);
this.toggleButton.Name = "toggleButton";
this.toggleButton.Size = new System.Drawing.Size(640, 23);
this.toggleButton.TabIndex = 0;
this.toggleButton.Text = "Start Rec.";
this.toggleButton.UseVisualStyleBackColor = true;
this.toggleButton.Click += new System.EventHandler(this.button1_Click);
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(5, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(640, 480);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
this.pictureBox1.WaitOnLoad = true;
//
// RecordVideo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(650, 526);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.toggleButton);
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(666, 565);
this.MinimumSize = new System.Drawing.Size(666, 565);
this.Name = "RecordVideo";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Record Video";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RecordVideo_FormClosing);
this.Load += new System.EventHandler(this.RecordVideo_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button toggleButton;
private System.Windows.Forms.PictureBox pictureBox1;
}
}