namespace Camera { partial class Form1 { /// /// 必要なデザイナ変数です。 /// private System.ComponentModel.IContainer components = null; /// /// 使用中のリソースをすべてクリーンアップします。 /// /// マネージ リソースが破棄される場合 true、破棄されない場合は false です。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows フォーム デザイナで生成されたコード /// /// デザイナ サポートに必要なメソッドです。このメソッドの内容を /// コード エディタで変更しないでください。 /// private void InitializeComponent() { this.pnlConnect = new System.Windows.Forms.Panel(); this.btnDisconnect = new System.Windows.Forms.Button(); this.btnConnect = new System.Windows.Forms.Button(); this.btnInit = new System.Windows.Forms.Button(); this.gbCapture = new System.Windows.Forms.GroupBox(); this.pnlCapture = new System.Windows.Forms.Panel(); this.btnCaptureFile = new System.Windows.Forms.Button(); this.btnCaptureVar = new System.Windows.Forms.Button(); this.gbPause = new System.Windows.Forms.GroupBox(); this.pnlPause = new System.Windows.Forms.Panel(); this.btnWrite = new System.Windows.Forms.Button(); this.btnRead = new System.Windows.Forms.Button(); this.lblPauseValue = new System.Windows.Forms.Label(); this.picCapture = new System.Windows.Forms.PictureBox(); this.pnlConnect.SuspendLayout(); this.gbCapture.SuspendLayout(); this.pnlCapture.SuspendLayout(); this.gbPause.SuspendLayout(); this.pnlPause.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picCapture)).BeginInit(); this.SuspendLayout(); // // pnlConnect // this.pnlConnect.BackColor = System.Drawing.Color.Lime; this.pnlConnect.Controls.Add(this.btnDisconnect); this.pnlConnect.Controls.Add(this.btnConnect); this.pnlConnect.Controls.Add(this.btnInit); this.pnlConnect.Location = new System.Drawing.Point(12, 12); this.pnlConnect.Name = "pnlConnect"; this.pnlConnect.Size = new System.Drawing.Size(200, 145); this.pnlConnect.TabIndex = 0; // // btnDisconnect // this.btnDisconnect.Enabled = false; this.btnDisconnect.Location = new System.Drawing.Point(15, 97); this.btnDisconnect.Name = "btnDisconnect"; this.btnDisconnect.Size = new System.Drawing.Size(170, 35); this.btnDisconnect.TabIndex = 2; this.btnDisconnect.Text = "Disconnect"; this.btnDisconnect.UseVisualStyleBackColor = true; this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click); // // btnConnect // this.btnConnect.Enabled = false; this.btnConnect.Location = new System.Drawing.Point(15, 56); this.btnConnect.Name = "btnConnect"; this.btnConnect.Size = new System.Drawing.Size(170, 35); this.btnConnect.TabIndex = 1; this.btnConnect.Text = "Connect"; this.btnConnect.UseVisualStyleBackColor = true; this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click); // // btnInit // this.btnInit.Location = new System.Drawing.Point(15, 15); this.btnInit.Name = "btnInit"; this.btnInit.Size = new System.Drawing.Size(170, 35); this.btnInit.TabIndex = 0; this.btnInit.Text = "Init"; this.btnInit.UseVisualStyleBackColor = true; this.btnInit.Click += new System.EventHandler(this.btnInit_Click); // // gbCapture // this.gbCapture.Controls.Add(this.pnlCapture); this.gbCapture.Location = new System.Drawing.Point(12, 165); this.gbCapture.Name = "gbCapture"; this.gbCapture.Size = new System.Drawing.Size(200, 60); this.gbCapture.TabIndex = 1; this.gbCapture.TabStop = false; this.gbCapture.Text = "Capture"; // // pnlCapture // this.pnlCapture.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); this.pnlCapture.Controls.Add(this.btnCaptureFile); this.pnlCapture.Controls.Add(this.btnCaptureVar); this.pnlCapture.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlCapture.Location = new System.Drawing.Point(3, 15); this.pnlCapture.Name = "pnlCapture"; this.pnlCapture.Size = new System.Drawing.Size(194, 42); this.pnlCapture.TabIndex = 0; // // btnCaptureFile // this.btnCaptureFile.Enabled = false; this.btnCaptureFile.Location = new System.Drawing.Point(102, 10); this.btnCaptureFile.Name = "btnCaptureFile"; this.btnCaptureFile.Size = new System.Drawing.Size(80, 23); this.btnCaptureFile.TabIndex = 1; this.btnCaptureFile.Text = "File"; this.btnCaptureFile.UseVisualStyleBackColor = true; this.btnCaptureFile.Click += new System.EventHandler(this.btnCaptureFile_Click); // // btnCaptureVar // this.btnCaptureVar.Enabled = false; this.btnCaptureVar.Location = new System.Drawing.Point(12, 10); this.btnCaptureVar.Name = "btnCaptureVar"; this.btnCaptureVar.Size = new System.Drawing.Size(80, 23); this.btnCaptureVar.TabIndex = 0; this.btnCaptureVar.Text = "Variable"; this.btnCaptureVar.UseVisualStyleBackColor = true; this.btnCaptureVar.Click += new System.EventHandler(this.btnCaptureVar_Click); // // gbPause // this.gbPause.Controls.Add(this.pnlPause); this.gbPause.Location = new System.Drawing.Point(15, 235); this.gbPause.Name = "gbPause"; this.gbPause.Size = new System.Drawing.Size(200, 89); this.gbPause.TabIndex = 2; this.gbPause.TabStop = false; this.gbPause.Text = "Pause"; // // pnlPause // this.pnlPause.BackColor = System.Drawing.Color.LightSkyBlue; this.pnlPause.Controls.Add(this.btnWrite); this.pnlPause.Controls.Add(this.btnRead); this.pnlPause.Controls.Add(this.lblPauseValue); this.pnlPause.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlPause.Location = new System.Drawing.Point(3, 15); this.pnlPause.Name = "pnlPause"; this.pnlPause.Size = new System.Drawing.Size(194, 71); this.pnlPause.TabIndex = 0; // // btnWrite // this.btnWrite.Enabled = false; this.btnWrite.Location = new System.Drawing.Point(99, 40); this.btnWrite.Name = "btnWrite"; this.btnWrite.Size = new System.Drawing.Size(80, 23); this.btnWrite.TabIndex = 2; this.btnWrite.Text = "Write"; this.btnWrite.UseVisualStyleBackColor = true; this.btnWrite.Click += new System.EventHandler(this.btnWrite_Click); // // btnRead // this.btnRead.Enabled = false; this.btnRead.Location = new System.Drawing.Point(9, 40); this.btnRead.Name = "btnRead"; this.btnRead.Size = new System.Drawing.Size(80, 23); this.btnRead.TabIndex = 1; this.btnRead.Text = "Read"; this.btnRead.UseVisualStyleBackColor = true; this.btnRead.Click += new System.EventHandler(this.btnRead_Click); // // lblPauseValue // this.lblPauseValue.BackColor = System.Drawing.Color.White; this.lblPauseValue.Location = new System.Drawing.Point(9, 10); this.lblPauseValue.Name = "lblPauseValue"; this.lblPauseValue.Size = new System.Drawing.Size(170, 20); this.lblPauseValue.TabIndex = 0; // // picCapture // this.picCapture.BackColor = System.Drawing.Color.White; this.picCapture.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.picCapture.Location = new System.Drawing.Point(225, 12); this.picCapture.Name = "picCapture"; this.picCapture.Size = new System.Drawing.Size(640, 480); this.picCapture.TabIndex = 3; this.picCapture.TabStop = false; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(879, 502); this.Controls.Add(this.picCapture); this.Controls.Add(this.gbPause); this.Controls.Add(this.gbCapture); this.Controls.Add(this.pnlConnect); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "Form1"; this.Text = "Form1"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.pnlConnect.ResumeLayout(false); this.gbCapture.ResumeLayout(false); this.pnlCapture.ResumeLayout(false); this.gbPause.ResumeLayout(false); this.pnlPause.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.picCapture)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel pnlConnect; private System.Windows.Forms.Button btnDisconnect; private System.Windows.Forms.Button btnConnect; private System.Windows.Forms.Button btnInit; private System.Windows.Forms.GroupBox gbCapture; private System.Windows.Forms.Panel pnlCapture; private System.Windows.Forms.GroupBox gbPause; private System.Windows.Forms.Panel pnlPause; private System.Windows.Forms.PictureBox picCapture; private System.Windows.Forms.Button btnCaptureFile; private System.Windows.Forms.Button btnCaptureVar; private System.Windows.Forms.Label lblPauseValue; private System.Windows.Forms.Button btnWrite; private System.Windows.Forms.Button btnRead; } }