namespace ThermalImageStreamerDemo { partial class PlaybackForm { /// /// 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.pictureBox1 = new System.Windows.Forms.PictureBox(); this.buttonPlay = new System.Windows.Forms.Button(); this.buttonStop = new System.Windows.Forms.Button(); this.buttonPause = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox1.Location = new System.Drawing.Point(12, 12); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(711, 423); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // buttonPlay // this.buttonPlay.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.buttonPlay.Location = new System.Drawing.Point(221, 441); this.buttonPlay.Name = "buttonPlay"; this.buttonPlay.Size = new System.Drawing.Size(75, 23); this.buttonPlay.TabIndex = 1; this.buttonPlay.Text = "Play"; this.buttonPlay.UseVisualStyleBackColor = true; this.buttonPlay.Click += new System.EventHandler(this.buttonPlay_Click); // // buttonStop // this.buttonStop.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.buttonStop.Location = new System.Drawing.Point(383, 441); this.buttonStop.Name = "buttonStop"; this.buttonStop.Size = new System.Drawing.Size(75, 23); this.buttonStop.TabIndex = 1; this.buttonStop.Text = "Stop"; this.buttonStop.UseVisualStyleBackColor = true; this.buttonStop.Click += new System.EventHandler(this.buttonStop_Click); // // buttonPause // this.buttonPause.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.buttonPause.Location = new System.Drawing.Point(302, 441); this.buttonPause.Name = "buttonPause"; this.buttonPause.Size = new System.Drawing.Size(75, 23); this.buttonPause.TabIndex = 1; this.buttonPause.Text = "Pause"; this.buttonPause.UseVisualStyleBackColor = true; this.buttonPause.Click += new System.EventHandler(this.buttonPause_Click); // // PlaybackForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(735, 469); this.Controls.Add(this.buttonStop); this.Controls.Add(this.buttonPause); this.Controls.Add(this.buttonPlay); this.Controls.Add(this.pictureBox1); this.Name = "PlaybackForm"; this.Text = "Playback"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PlaybackForm_FormClosing); this.Load += new System.EventHandler(this.PlaybackForm_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Button buttonPlay; private System.Windows.Forms.Button buttonStop; private System.Windows.Forms.Button buttonPause; } }