namespace Robot { 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.btnInit = new System.Windows.Forms.Button(); this.btnConnect = new System.Windows.Forms.Button(); this.gbVariable = new System.Windows.Forms.GroupBox(); this.pnlVariable = new System.Windows.Forms.Panel(); this.lblDsp = new System.Windows.Forms.Label(); this.lblCurAng = new System.Windows.Forms.Label(); this.lblCurPos = new System.Windows.Forms.Label(); this.lblDummy = new System.Windows.Forms.Label(); this.btnReadCurAng = new System.Windows.Forms.Button(); this.btnReadCurPos = new System.Windows.Forms.Button(); this.btnReadDummy = new System.Windows.Forms.Button(); this.gbTask = new System.Windows.Forms.GroupBox(); this.pnlTask = new System.Windows.Forms.Panel(); this.lblTask = new System.Windows.Forms.Label(); this.btnStart = new System.Windows.Forms.Button(); this.btnStop = new System.Windows.Forms.Button(); this.pnlConnect.SuspendLayout(); this.gbVariable.SuspendLayout(); this.pnlVariable.SuspendLayout(); this.gbTask.SuspendLayout(); this.pnlTask.SuspendLayout(); this.SuspendLayout(); // // pnlConnect // this.pnlConnect.BackColor = System.Drawing.Color.Lime; this.pnlConnect.Controls.Add(this.btnDisconnect); this.pnlConnect.Controls.Add(this.btnInit); this.pnlConnect.Controls.Add(this.btnConnect); this.pnlConnect.Location = new System.Drawing.Point(14, 12); this.pnlConnect.Name = "pnlConnect"; this.pnlConnect.Size = new System.Drawing.Size(270, 155); this.pnlConnect.TabIndex = 0; // // btnDisconnect // this.btnDisconnect.Enabled = false; this.btnDisconnect.Location = new System.Drawing.Point(19, 102); this.btnDisconnect.Name = "btnDisconnect"; this.btnDisconnect.Size = new System.Drawing.Size(235, 39); this.btnDisconnect.TabIndex = 2; this.btnDisconnect.Text = "Disconnect"; this.btnDisconnect.UseVisualStyleBackColor = true; this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click); // // btnInit // this.btnInit.Location = new System.Drawing.Point(19, 12); this.btnInit.Name = "btnInit"; this.btnInit.Size = new System.Drawing.Size(235, 39); this.btnInit.TabIndex = 0; this.btnInit.Text = "Init"; this.btnInit.UseVisualStyleBackColor = true; this.btnInit.Click += new System.EventHandler(this.btnInit_Click); // // btnConnect // this.btnConnect.Enabled = false; this.btnConnect.Location = new System.Drawing.Point(19, 57); this.btnConnect.Name = "btnConnect"; this.btnConnect.Size = new System.Drawing.Size(235, 39); this.btnConnect.TabIndex = 1; this.btnConnect.Text = "Connect"; this.btnConnect.UseVisualStyleBackColor = true; this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click); // // gbVariable // this.gbVariable.Controls.Add(this.pnlVariable); this.gbVariable.Location = new System.Drawing.Point(14, 173); this.gbVariable.Name = "gbVariable"; this.gbVariable.Size = new System.Drawing.Size(270, 155); this.gbVariable.TabIndex = 1; this.gbVariable.TabStop = false; this.gbVariable.Text = "Variable"; // // pnlVariable // this.pnlVariable.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); this.pnlVariable.Controls.Add(this.btnReadDummy); this.pnlVariable.Controls.Add(this.btnReadCurPos); this.pnlVariable.Controls.Add(this.btnReadCurAng); this.pnlVariable.Controls.Add(this.lblDummy); this.pnlVariable.Controls.Add(this.lblCurPos); this.pnlVariable.Controls.Add(this.lblCurAng); this.pnlVariable.Controls.Add(this.lblDsp); this.pnlVariable.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlVariable.Location = new System.Drawing.Point(3, 15); this.pnlVariable.Name = "pnlVariable"; this.pnlVariable.Size = new System.Drawing.Size(264, 137); this.pnlVariable.TabIndex = 0; // // lblDsp // this.lblDsp.BackColor = System.Drawing.Color.White; this.lblDsp.Location = new System.Drawing.Point(14, 15); this.lblDsp.Name = "lblDsp"; this.lblDsp.Size = new System.Drawing.Size(237, 20); this.lblDsp.TabIndex = 0; this.lblDsp.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // lblCurAng // this.lblCurAng.AutoSize = true; this.lblCurAng.Location = new System.Drawing.Point(14, 50); this.lblCurAng.Name = "lblCurAng"; this.lblCurAng.Size = new System.Drawing.Size(114, 12); this.lblCurAng.TabIndex = 1; this.lblCurAng.Text = "@CURRENT_ANGLE :"; // // lblCurPos // this.lblCurPos.AutoSize = true; this.lblCurPos.Location = new System.Drawing.Point(14, 80); this.lblCurPos.Name = "lblCurPos"; this.lblCurPos.Size = new System.Drawing.Size(128, 12); this.lblCurPos.TabIndex = 3; this.lblCurPos.Text = "@CURRENT_POSITION :"; // // lblDummy // this.lblDummy.AutoSize = true; this.lblDummy.Location = new System.Drawing.Point(14, 109); this.lblDummy.Name = "lblDummy"; this.lblDummy.Size = new System.Drawing.Size(60, 12); this.lblDummy.TabIndex = 5; this.lblDummy.Text = "@DUMMY :"; // // btnReadCurAng // this.btnReadCurAng.Enabled = false; this.btnReadCurAng.Location = new System.Drawing.Point(161, 45); this.btnReadCurAng.Name = "btnReadCurAng"; this.btnReadCurAng.Size = new System.Drawing.Size(90, 23); this.btnReadCurAng.TabIndex = 2; this.btnReadCurAng.Text = "Read"; this.btnReadCurAng.UseVisualStyleBackColor = true; this.btnReadCurAng.Click += new System.EventHandler(this.btnReadCurAng_Click); // // btnReadCurPos // this.btnReadCurPos.Enabled = false; this.btnReadCurPos.Location = new System.Drawing.Point(161, 75); this.btnReadCurPos.Name = "btnReadCurPos"; this.btnReadCurPos.Size = new System.Drawing.Size(90, 23); this.btnReadCurPos.TabIndex = 4; this.btnReadCurPos.Text = "Read"; this.btnReadCurPos.UseVisualStyleBackColor = true; this.btnReadCurPos.Click += new System.EventHandler(this.btnReadCurPos_Click); // // btnReadDummy // this.btnReadDummy.Enabled = false; this.btnReadDummy.Location = new System.Drawing.Point(161, 104); this.btnReadDummy.Name = "btnReadDummy"; this.btnReadDummy.Size = new System.Drawing.Size(90, 23); this.btnReadDummy.TabIndex = 6; this.btnReadDummy.Text = "Read"; this.btnReadDummy.UseVisualStyleBackColor = true; this.btnReadDummy.Click += new System.EventHandler(this.btnReadDummy_Click); // // gbTask // this.gbTask.Controls.Add(this.pnlTask); this.gbTask.Location = new System.Drawing.Point(14, 334); this.gbTask.Name = "gbTask"; this.gbTask.Size = new System.Drawing.Size(270, 60); this.gbTask.TabIndex = 2; this.gbTask.TabStop = false; this.gbTask.Text = "Task"; // // pnlTask // this.pnlTask.BackColor = System.Drawing.Color.LightSkyBlue; this.pnlTask.Controls.Add(this.btnStop); this.pnlTask.Controls.Add(this.btnStart); this.pnlTask.Controls.Add(this.lblTask); this.pnlTask.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlTask.Location = new System.Drawing.Point(3, 15); this.pnlTask.Name = "pnlTask"; this.pnlTask.Size = new System.Drawing.Size(264, 42); this.pnlTask.TabIndex = 0; // // lblTask // this.lblTask.AutoSize = true; this.lblTask.Location = new System.Drawing.Point(16, 14); this.lblTask.Name = "lblTask"; this.lblTask.Size = new System.Drawing.Size(34, 12); this.lblTask.TabIndex = 0; this.lblTask.Text = "Prg1 :"; // // btnStart // this.btnStart.Enabled = false; this.btnStart.Location = new System.Drawing.Point(65, 9); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(90, 23); this.btnStart.TabIndex = 1; this.btnStart.Text = "Start"; this.btnStart.UseVisualStyleBackColor = true; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // btnStop // this.btnStop.Enabled = false; this.btnStop.Location = new System.Drawing.Point(161, 9); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(90, 23); this.btnStop.TabIndex = 2; this.btnStop.Text = "Stop"; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.btnStop_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(299, 407); this.Controls.Add(this.gbTask); this.Controls.Add(this.gbVariable); this.Controls.Add(this.pnlConnect); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "Form1"; this.Text = "Form1"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.pnlConnect.ResumeLayout(false); this.gbVariable.ResumeLayout(false); this.pnlVariable.ResumeLayout(false); this.pnlVariable.PerformLayout(); this.gbTask.ResumeLayout(false); this.pnlTask.ResumeLayout(false); this.pnlTask.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel pnlConnect; private System.Windows.Forms.Button btnDisconnect; private System.Windows.Forms.Button btnInit; private System.Windows.Forms.Button btnConnect; private System.Windows.Forms.GroupBox gbVariable; private System.Windows.Forms.Panel pnlVariable; private System.Windows.Forms.Label lblDsp; private System.Windows.Forms.Button btnReadCurAng; private System.Windows.Forms.Label lblDummy; private System.Windows.Forms.Label lblCurPos; private System.Windows.Forms.Label lblCurAng; private System.Windows.Forms.Button btnReadDummy; private System.Windows.Forms.Button btnReadCurPos; private System.Windows.Forms.GroupBox gbTask; private System.Windows.Forms.Panel pnlTask; private System.Windows.Forms.Button btnStop; private System.Windows.Forms.Button btnStart; private System.Windows.Forms.Label lblTask; } }