namespace Project { 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.components = new System.ComponentModel.Container(); this.btnConnect = new System.Windows.Forms.Button(); this.btnRedOn = new System.Windows.Forms.Button(); this.btnMeasureStart = new System.Windows.Forms.Button(); this.lblTemp = new System.Windows.Forms.Label(); this.lblHumid = new System.Windows.Forms.Label(); this.btnDisconnect = new System.Windows.Forms.Button(); this.pnlGrn = new System.Windows.Forms.Panel(); this.pnlYlw = new System.Windows.Forms.Panel(); this.btnMeasureStop = new System.Windows.Forms.Button(); this.gBoxGrn = new System.Windows.Forms.GroupBox(); this.btnGrnOn = new System.Windows.Forms.Button(); this.btnGrnOff = new System.Windows.Forms.Button(); this.gBoxRed = new System.Windows.Forms.GroupBox(); this.btnRedOff = new System.Windows.Forms.Button(); this.gBoxHtr = new System.Windows.Forms.GroupBox(); this.btnHtrOn = new System.Windows.Forms.Button(); this.btnHtrOff = new System.Windows.Forms.Button(); this.tBoxHumid = new System.Windows.Forms.TextBox(); this.btnVer = new System.Windows.Forms.Button(); this.tBoxTemp = new System.Windows.Forms.TextBox(); this.lblTitle = new System.Windows.Forms.Label(); this.timerMeasure = new System.Windows.Forms.Timer(this.components); this.pnlGrn.SuspendLayout(); this.pnlYlw.SuspendLayout(); this.gBoxGrn.SuspendLayout(); this.gBoxRed.SuspendLayout(); this.gBoxHtr.SuspendLayout(); this.SuspendLayout(); // // btnConnect // this.btnConnect.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128))); this.btnConnect.Location = new System.Drawing.Point(12, 18); this.btnConnect.Name = "btnConnect"; this.btnConnect.Size = new System.Drawing.Size(192, 39); this.btnConnect.TabIndex = 4; this.btnConnect.Text = "Connect"; this.btnConnect.UseVisualStyleBackColor = true; this.btnConnect.Click += new System.EventHandler(this.btnConnectRobot_Click); // // btnRedOn // this.btnRedOn.Cursor = System.Windows.Forms.Cursors.Default; this.btnRedOn.Enabled = false; this.btnRedOn.Location = new System.Drawing.Point(14, 18); this.btnRedOn.Name = "btnRedOn"; this.btnRedOn.Size = new System.Drawing.Size(64, 23); this.btnRedOn.TabIndex = 5; this.btnRedOn.Text = "ON"; this.btnRedOn.UseVisualStyleBackColor = true; this.btnRedOn.Click += new System.EventHandler(this.btnRedOn_Click); // // btnMeasureStart // this.btnMeasureStart.Cursor = System.Windows.Forms.Cursors.Default; this.btnMeasureStart.Enabled = false; this.btnMeasureStart.Location = new System.Drawing.Point(338, 36); this.btnMeasureStart.Name = "btnMeasureStart"; this.btnMeasureStart.Size = new System.Drawing.Size(78, 71); this.btnMeasureStart.TabIndex = 8; this.btnMeasureStart.Text = "Measure Start"; this.btnMeasureStart.UseVisualStyleBackColor = true; this.btnMeasureStart.Click += new System.EventHandler(this.btnMeasureStart_Click); // // lblTemp // this.lblTemp.AutoSize = true; this.lblTemp.Location = new System.Drawing.Point(10, 21); this.lblTemp.Name = "lblTemp"; this.lblTemp.Size = new System.Drawing.Size(95, 12); this.lblTemp.TabIndex = 21; this.lblTemp.Text = "Temperature [℃]:"; // // lblHumid // this.lblHumid.AutoSize = true; this.lblHumid.Location = new System.Drawing.Point(10, 129); this.lblHumid.Name = "lblHumid"; this.lblHumid.Size = new System.Drawing.Size(73, 12); this.lblHumid.TabIndex = 22; this.lblHumid.Text = "Humid [%RH]:"; // // btnDisconnect // this.btnDisconnect.Enabled = false; this.btnDisconnect.Font = new System.Drawing.Font("MS UI Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128))); this.btnDisconnect.Location = new System.Drawing.Point(224, 18); this.btnDisconnect.Name = "btnDisconnect"; this.btnDisconnect.Size = new System.Drawing.Size(192, 39); this.btnDisconnect.TabIndex = 32; this.btnDisconnect.Text = "Disconnect"; this.btnDisconnect.UseVisualStyleBackColor = true; this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnectRobot_Click); // // pnlGrn // this.pnlGrn.BackColor = System.Drawing.Color.Lime; this.pnlGrn.Controls.Add(this.btnDisconnect); this.pnlGrn.Controls.Add(this.btnConnect); this.pnlGrn.Location = new System.Drawing.Point(12, 45); this.pnlGrn.Name = "pnlGrn"; this.pnlGrn.Size = new System.Drawing.Size(432, 73); this.pnlGrn.TabIndex = 0; // // pnlYlw // this.pnlYlw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); this.pnlYlw.Controls.Add(this.btnMeasureStop); this.pnlYlw.Controls.Add(this.gBoxGrn); this.pnlYlw.Controls.Add(this.gBoxRed); this.pnlYlw.Controls.Add(this.gBoxHtr); this.pnlYlw.Controls.Add(this.tBoxHumid); this.pnlYlw.Controls.Add(this.btnVer); this.pnlYlw.Controls.Add(this.tBoxTemp); this.pnlYlw.Controls.Add(this.lblHumid); this.pnlYlw.Controls.Add(this.lblTemp); this.pnlYlw.Controls.Add(this.btnMeasureStart); this.pnlYlw.Location = new System.Drawing.Point(12, 124); this.pnlYlw.Name = "pnlYlw"; this.pnlYlw.Size = new System.Drawing.Size(432, 314); this.pnlYlw.TabIndex = 31; // // btnMeasureStop // this.btnMeasureStop.Cursor = System.Windows.Forms.Cursors.Default; this.btnMeasureStop.Enabled = false; this.btnMeasureStop.Location = new System.Drawing.Point(338, 144); this.btnMeasureStop.Name = "btnMeasureStop"; this.btnMeasureStop.RightToLeft = System.Windows.Forms.RightToLeft.No; this.btnMeasureStop.Size = new System.Drawing.Size(78, 71); this.btnMeasureStop.TabIndex = 72; this.btnMeasureStop.Text = "Measure Stop"; this.btnMeasureStop.UseVisualStyleBackColor = true; this.btnMeasureStop.Click += new System.EventHandler(this.btnMeasureStop_Click); // // gBoxGrn // this.gBoxGrn.BackColor = System.Drawing.Color.Transparent; this.gBoxGrn.Controls.Add(this.btnGrnOn); this.gBoxGrn.Controls.Add(this.btnGrnOff); this.gBoxGrn.Location = new System.Drawing.Point(12, 221); this.gBoxGrn.Name = "gBoxGrn"; this.gBoxGrn.Size = new System.Drawing.Size(93, 78); this.gBoxGrn.TabIndex = 71; this.gBoxGrn.TabStop = false; this.gBoxGrn.Text = "LED: Green"; // // btnGrnOn // this.btnGrnOn.Cursor = System.Windows.Forms.Cursors.Default; this.btnGrnOn.Enabled = false; this.btnGrnOn.Location = new System.Drawing.Point(14, 18); this.btnGrnOn.Name = "btnGrnOn"; this.btnGrnOn.Size = new System.Drawing.Size(64, 23); this.btnGrnOn.TabIndex = 65; this.btnGrnOn.Text = "ON"; this.btnGrnOn.UseVisualStyleBackColor = true; this.btnGrnOn.Click += new System.EventHandler(this.btnGrnOn_Click); // // btnGrnOff // this.btnGrnOff.Cursor = System.Windows.Forms.Cursors.Default; this.btnGrnOff.Enabled = false; this.btnGrnOff.Location = new System.Drawing.Point(14, 47); this.btnGrnOff.Name = "btnGrnOff"; this.btnGrnOff.Size = new System.Drawing.Size(64, 23); this.btnGrnOff.TabIndex = 66; this.btnGrnOff.Text = "OFF"; this.btnGrnOff.UseVisualStyleBackColor = true; this.btnGrnOff.Click += new System.EventHandler(this.btnGrnOff_Click); // // gBoxRed // this.gBoxRed.BackColor = System.Drawing.Color.Transparent; this.gBoxRed.Controls.Add(this.btnRedOn); this.gBoxRed.Controls.Add(this.btnRedOff); this.gBoxRed.Location = new System.Drawing.Point(125, 221); this.gBoxRed.Name = "gBoxRed"; this.gBoxRed.Size = new System.Drawing.Size(93, 78); this.gBoxRed.TabIndex = 70; this.gBoxRed.TabStop = false; this.gBoxRed.Text = "LED: Red"; // // btnRedOff // this.btnRedOff.Cursor = System.Windows.Forms.Cursors.Default; this.btnRedOff.Enabled = false; this.btnRedOff.Location = new System.Drawing.Point(14, 47); this.btnRedOff.Name = "btnRedOff"; this.btnRedOff.Size = new System.Drawing.Size(64, 23); this.btnRedOff.TabIndex = 64; this.btnRedOff.Text = "OFF"; this.btnRedOff.UseVisualStyleBackColor = true; this.btnRedOff.Click += new System.EventHandler(this.btnRedOff_Click); // // gBoxHtr // this.gBoxHtr.BackColor = System.Drawing.Color.Transparent; this.gBoxHtr.Controls.Add(this.btnHtrOn); this.gBoxHtr.Controls.Add(this.btnHtrOff); this.gBoxHtr.Location = new System.Drawing.Point(239, 221); this.gBoxHtr.Name = "gBoxHtr"; this.gBoxHtr.Size = new System.Drawing.Size(93, 78); this.gBoxHtr.TabIndex = 69; this.gBoxHtr.TabStop = false; this.gBoxHtr.Text = "Heater"; // // btnHtrOn // this.btnHtrOn.Cursor = System.Windows.Forms.Cursors.Default; this.btnHtrOn.Enabled = false; this.btnHtrOn.Location = new System.Drawing.Point(14, 18); this.btnHtrOn.Name = "btnHtrOn"; this.btnHtrOn.Size = new System.Drawing.Size(64, 23); this.btnHtrOn.TabIndex = 68; this.btnHtrOn.Text = "ON"; this.btnHtrOn.UseVisualStyleBackColor = true; this.btnHtrOn.Click += new System.EventHandler(this.btnHtrOn_Click); // // btnHtrOff // this.btnHtrOff.Cursor = System.Windows.Forms.Cursors.Default; this.btnHtrOff.Enabled = false; this.btnHtrOff.Location = new System.Drawing.Point(14, 49); this.btnHtrOff.Name = "btnHtrOff"; this.btnHtrOff.Size = new System.Drawing.Size(64, 23); this.btnHtrOff.TabIndex = 67; this.btnHtrOff.Text = "OFF"; this.btnHtrOff.UseVisualStyleBackColor = true; this.btnHtrOff.Click += new System.EventHandler(this.btnHtrOff_Click); // // tBoxHumid // this.tBoxHumid.Font = new System.Drawing.Font("MS UI Gothic", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128))); this.tBoxHumid.Location = new System.Drawing.Point(12, 144); this.tBoxHumid.Name = "tBoxHumid"; this.tBoxHumid.Size = new System.Drawing.Size(320, 71); this.tBoxHumid.TabIndex = 56; // // btnVer // this.btnVer.Cursor = System.Windows.Forms.Cursors.Default; this.btnVer.Enabled = false; this.btnVer.Location = new System.Drawing.Point(338, 253); this.btnVer.Name = "btnVer"; this.btnVer.Size = new System.Drawing.Size(78, 23); this.btnVer.TabIndex = 55; this.btnVer.Text = "Version"; this.btnVer.UseVisualStyleBackColor = true; this.btnVer.Click += new System.EventHandler(this.btnVer_Click); // // tBoxTemp // this.tBoxTemp.Font = new System.Drawing.Font("MS UI Gothic", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128))); this.tBoxTemp.Location = new System.Drawing.Point(12, 36); this.tBoxTemp.Name = "tBoxTemp"; this.tBoxTemp.Size = new System.Drawing.Size(320, 71); this.tBoxTemp.TabIndex = 51; // // lblTitle // this.lblTitle.AutoSize = true; this.lblTitle.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128))); this.lblTitle.Location = new System.Drawing.Point(49, 9); this.lblTitle.Name = "lblTitle"; this.lblTitle.Size = new System.Drawing.Size(352, 24); this.lblTitle.TabIndex = 50; this.lblTitle.Text = "CaoProv.StrawberryLinux.USBRH2"; // // timerMeasure // this.timerMeasure.Tick += new System.EventHandler(this.timerMeasure_Tick); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(457, 450); this.Controls.Add(this.lblTitle); this.Controls.Add(this.pnlYlw); this.Controls.Add(this.pnlGrn); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "Form1"; this.Text = "CaoProv.StrawberryLinux.USBRH2"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.Load += new System.EventHandler(this.Form1_Load); this.pnlGrn.ResumeLayout(false); this.pnlYlw.ResumeLayout(false); this.pnlYlw.PerformLayout(); this.gBoxGrn.ResumeLayout(false); this.gBoxRed.ResumeLayout(false); this.gBoxHtr.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnConnect; private System.Windows.Forms.Button btnRedOn; private System.Windows.Forms.Button btnMeasureStart; private System.Windows.Forms.Label lblTemp; private System.Windows.Forms.Label lblHumid; private System.Windows.Forms.Button btnDisconnect; private System.Windows.Forms.Panel pnlGrn; private System.Windows.Forms.Panel pnlYlw; private System.Windows.Forms.Label lblTitle; private System.Windows.Forms.TextBox tBoxTemp; private System.Windows.Forms.Button btnVer; private System.Windows.Forms.TextBox tBoxHumid; private System.Windows.Forms.Button btnRedOff; private System.Windows.Forms.Button btnGrnOff; private System.Windows.Forms.Button btnGrnOn; private System.Windows.Forms.Button btnHtrOn; private System.Windows.Forms.Button btnHtrOff; private System.Windows.Forms.GroupBox gBoxHtr; private System.Windows.Forms.GroupBox gBoxRed; private System.Windows.Forms.GroupBox gBoxGrn; private System.Windows.Forms.Button btnMeasureStop; private System.Windows.Forms.Timer timerMeasure; } }