namespace Part_3___Movemet_Detection { partial class MovementDetection { /// /// 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.label1 = new System.Windows.Forms.Label(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.XCoordinate = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.YCoordinate = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.SelectVideoFile = new System.Windows.Forms.Button(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.label2 = new System.Windows.Forms.Label(); this.linkLabel1 = new System.Windows.Forms.LinkLabel(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.ForeColor = System.Drawing.Color.Red; this.label1.Location = new System.Drawing.Point(12, 39); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(129, 13); this.label1.TabIndex = 0; this.label1.Text = "Co-ordinates for Red Pixel"; // // dataGridView1 // this.dataGridView1.AllowUserToDeleteRows = false; this.dataGridView1.AllowUserToResizeColumns = false; this.dataGridView1.AllowUserToResizeRows = false; this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.XCoordinate, this.YCoordinate}); this.dataGridView1.Location = new System.Drawing.Point(12, 55); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.ReadOnly = true; this.dataGridView1.Size = new System.Drawing.Size(265, 316); this.dataGridView1.TabIndex = 1; // // XCoordinate // this.XCoordinate.HeaderText = "X Co-ordinate"; this.XCoordinate.Name = "XCoordinate"; this.XCoordinate.ReadOnly = true; // // YCoordinate // this.YCoordinate.HeaderText = "Y Co-ordinate"; this.YCoordinate.Name = "YCoordinate"; this.YCoordinate.ReadOnly = true; // // SelectVideoFile // this.SelectVideoFile.Location = new System.Drawing.Point(12, 13); this.SelectVideoFile.Name = "SelectVideoFile"; this.SelectVideoFile.Size = new System.Drawing.Size(75, 23); this.SelectVideoFile.TabIndex = 2; this.SelectVideoFile.Text = "Select Video"; this.SelectVideoFile.UseVisualStyleBackColor = true; this.SelectVideoFile.Click += new System.EventHandler(this.SelectVideoFile_Click); // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(93, 18); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(0, 13); this.label2.TabIndex = 3; // // linkLabel1 // this.linkLabel1.AutoSize = true; this.linkLabel1.Location = new System.Drawing.Point(159, 39); this.linkLabel1.Name = "linkLabel1"; this.linkLabel1.Size = new System.Drawing.Size(118, 13); this.linkLabel1.TabIndex = 4; this.linkLabel1.TabStop = true; this.linkLabel1.Text = "Click to get coordinates"; this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); // // MovementDetection // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(289, 382); this.Controls.Add(this.linkLabel1); this.Controls.Add(this.label2); this.Controls.Add(this.SelectVideoFile); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.label1); this.MaximizeBox = false; this.MaximumSize = new System.Drawing.Size(305, 421); this.MinimumSize = new System.Drawing.Size(305, 421); this.Name = "MovementDetection"; this.Text = "Pixel Movement"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.DataGridViewTextBoxColumn XCoordinate; private System.Windows.Forms.DataGridViewTextBoxColumn YCoordinate; private System.Windows.Forms.Button SelectVideoFile; private System.Windows.Forms.OpenFileDialog openFileDialog1; private System.Windows.Forms.Label label2; private System.Windows.Forms.LinkLabel linkLabel1; } }