namespace VideoPlayer { partial class VideoPlayerForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.loadButton = new System.Windows.Forms.Button(); this.startButton = new System.Windows.Forms.Button(); this.pauseButton = new System.Windows.Forms.Button(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.frameLabel = new System.Windows.Forms.Label(); this.motionDetectButton = new System.Windows.Forms.Button(); this.stopButton = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // loadButton // this.loadButton.Location = new System.Drawing.Point(25, 45); this.loadButton.Margin = new System.Windows.Forms.Padding(4); this.loadButton.Name = "loadButton"; this.loadButton.Size = new System.Drawing.Size(129, 39); this.loadButton.TabIndex = 0; this.loadButton.Text = "Load video"; this.loadButton.UseVisualStyleBackColor = true; this.loadButton.Click += new System.EventHandler(this.loadButton_Click); // // startButton // this.startButton.Location = new System.Drawing.Point(183, 46); this.startButton.Margin = new System.Windows.Forms.Padding(4); this.startButton.Name = "startButton"; this.startButton.Size = new System.Drawing.Size(128, 38); this.startButton.TabIndex = 1; this.startButton.Text = "Start"; this.startButton.UseVisualStyleBackColor = true; this.startButton.Click += new System.EventHandler(this.startButton_Click); // // pauseButton // this.pauseButton.Location = new System.Drawing.Point(344, 46); this.pauseButton.Margin = new System.Windows.Forms.Padding(4); this.pauseButton.Name = "pauseButton"; this.pauseButton.Size = new System.Drawing.Size(132, 38); this.pauseButton.TabIndex = 2; this.pauseButton.Text = "Pause"; this.pauseButton.UseVisualStyleBackColor = true; this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click); // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; // // pictureBox1 // this.pictureBox1.Location = new System.Drawing.Point(25, 104); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(415, 354); this.pictureBox1.TabIndex = 5; this.pictureBox1.TabStop = false; // // frameLabel // this.frameLabel.AutoSize = true; this.frameLabel.Location = new System.Drawing.Point(513, 529); this.frameLabel.Name = "frameLabel"; this.frameLabel.Size = new System.Drawing.Size(60, 16); this.frameLabel.TabIndex = 6; this.frameLabel.Text = "Frame: "; // // motionDetectButton // this.motionDetectButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.motionDetectButton.Location = new System.Drawing.Point(505, 47); this.motionDetectButton.Name = "motionDetectButton"; this.motionDetectButton.Size = new System.Drawing.Size(128, 37); this.motionDetectButton.TabIndex = 7; this.motionDetectButton.Text = "Motion Detect"; this.motionDetectButton.UseVisualStyleBackColor = true; this.motionDetectButton.Click += new System.EventHandler(this.motionDetectButton_Click); // // stopButton // this.stopButton.Location = new System.Drawing.Point(670, 47); this.stopButton.Name = "stopButton"; this.stopButton.Size = new System.Drawing.Size(112, 37); this.stopButton.TabIndex = 8; this.stopButton.Text = "Stop"; this.stopButton.UseVisualStyleBackColor = true; this.stopButton.Click += new System.EventHandler(this.stopButton_Click_1); // // VideoPlayerForm // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(892, 554); this.Controls.Add(this.stopButton); this.Controls.Add(this.motionDetectButton); this.Controls.Add(this.frameLabel); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.pauseButton); this.Controls.Add(this.startButton); this.Controls.Add(this.loadButton); this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Margin = new System.Windows.Forms.Padding(4); this.Name = "VideoPlayerForm"; this.Text = "AForge Video Player"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.VideoPlayerForm_FormClosed); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button loadButton; private System.Windows.Forms.Button startButton; private System.Windows.Forms.Button pauseButton; private System.Windows.Forms.OpenFileDialog openFileDialog1; private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Label frameLabel; private System.Windows.Forms.Button motionDetectButton; private System.Windows.Forms.Button stopButton; } }