namespace PLC { 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.btnConnect = new System.Windows.Forms.Button(); this.btnDisconnect = new System.Windows.Forms.Button(); this.pnlConnect = new System.Windows.Forms.Panel(); this.pnlVariable = new System.Windows.Forms.Panel(); this.btnWriteY = new System.Windows.Forms.Button(); this.btnReadY = new System.Windows.Forms.Button(); this.btnWriteX = new System.Windows.Forms.Button(); this.btnReadX = new System.Windows.Forms.Button(); this.btnWriteM = new System.Windows.Forms.Button(); this.btnReadM = new System.Windows.Forms.Button(); this.btnWriteD = new System.Windows.Forms.Button(); this.btnReadD = new System.Windows.Forms.Button(); this.lblY = new System.Windows.Forms.Label(); this.lblX = new System.Windows.Forms.Label(); this.lblM = new System.Windows.Forms.Label(); this.lblD = new System.Windows.Forms.Label(); this.lblDsp = new System.Windows.Forms.Label(); this.pnlConnect.SuspendLayout(); this.pnlVariable.SuspendLayout(); this.SuspendLayout(); // // btnConnect // this.btnConnect.Location = new System.Drawing.Point(12, 12); this.btnConnect.Name = "btnConnect"; this.btnConnect.Size = new System.Drawing.Size(259, 39); this.btnConnect.TabIndex = 0; this.btnConnect.Text = "Connect"; this.btnConnect.UseVisualStyleBackColor = true; this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click); // // btnDisconnect // this.btnDisconnect.Enabled = false; this.btnDisconnect.Location = new System.Drawing.Point(12, 57); this.btnDisconnect.Name = "btnDisconnect"; this.btnDisconnect.Size = new System.Drawing.Size(259, 39); this.btnDisconnect.TabIndex = 1; this.btnDisconnect.Text = "Disconnect"; this.btnDisconnect.UseVisualStyleBackColor = true; this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click); // // pnlConnect // this.pnlConnect.BackColor = System.Drawing.Color.Lime; this.pnlConnect.Controls.Add(this.btnDisconnect); this.pnlConnect.Controls.Add(this.btnConnect); this.pnlConnect.Location = new System.Drawing.Point(13, 12); this.pnlConnect.Name = "pnlConnect"; this.pnlConnect.Size = new System.Drawing.Size(284, 107); this.pnlConnect.TabIndex = 0; // // pnlVariable // this.pnlVariable.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); this.pnlVariable.Controls.Add(this.btnWriteY); this.pnlVariable.Controls.Add(this.btnReadY); this.pnlVariable.Controls.Add(this.btnWriteX); this.pnlVariable.Controls.Add(this.btnReadX); this.pnlVariable.Controls.Add(this.btnWriteM); this.pnlVariable.Controls.Add(this.btnReadM); this.pnlVariable.Controls.Add(this.btnWriteD); this.pnlVariable.Controls.Add(this.btnReadD); this.pnlVariable.Controls.Add(this.lblY); this.pnlVariable.Controls.Add(this.lblX); this.pnlVariable.Controls.Add(this.lblM); this.pnlVariable.Controls.Add(this.lblD); this.pnlVariable.Controls.Add(this.lblDsp); this.pnlVariable.Location = new System.Drawing.Point(12, 130); this.pnlVariable.Name = "pnlVariable"; this.pnlVariable.Size = new System.Drawing.Size(285, 160); this.pnlVariable.TabIndex = 1; // // btnWriteY // this.btnWriteY.Enabled = false; this.btnWriteY.Location = new System.Drawing.Point(197, 127); this.btnWriteY.Name = "btnWriteY"; this.btnWriteY.Size = new System.Drawing.Size(75, 23); this.btnWriteY.TabIndex = 12; this.btnWriteY.Text = "Write"; this.btnWriteY.UseVisualStyleBackColor = true; this.btnWriteY.Click += new System.EventHandler(this.btnWriteY_Click); // // btnReadY // this.btnReadY.Enabled = false; this.btnReadY.Location = new System.Drawing.Point(116, 127); this.btnReadY.Name = "btnReadY"; this.btnReadY.Size = new System.Drawing.Size(75, 23); this.btnReadY.TabIndex = 11; this.btnReadY.Text = "Read"; this.btnReadY.UseVisualStyleBackColor = true; this.btnReadY.Click += new System.EventHandler(this.btnReadY_Click); // // btnWriteX // this.btnWriteX.Enabled = false; this.btnWriteX.Location = new System.Drawing.Point(197, 98); this.btnWriteX.Name = "btnWriteX"; this.btnWriteX.Size = new System.Drawing.Size(75, 23); this.btnWriteX.TabIndex = 9; this.btnWriteX.Text = "Write"; this.btnWriteX.UseVisualStyleBackColor = true; this.btnWriteX.Click += new System.EventHandler(this.btnWriteX_Click); // // btnReadX // this.btnReadX.Enabled = false; this.btnReadX.Location = new System.Drawing.Point(116, 98); this.btnReadX.Name = "btnReadX"; this.btnReadX.Size = new System.Drawing.Size(75, 23); this.btnReadX.TabIndex = 8; this.btnReadX.Text = "Read"; this.btnReadX.UseVisualStyleBackColor = true; this.btnReadX.Click += new System.EventHandler(this.btnReadX_Click); // // btnWriteM // this.btnWriteM.Enabled = false; this.btnWriteM.Location = new System.Drawing.Point(197, 69); this.btnWriteM.Name = "btnWriteM"; this.btnWriteM.Size = new System.Drawing.Size(75, 23); this.btnWriteM.TabIndex = 6; this.btnWriteM.Text = "Write"; this.btnWriteM.UseVisualStyleBackColor = true; this.btnWriteM.Click += new System.EventHandler(this.btnWriteM_Click); // // btnReadM // this.btnReadM.Enabled = false; this.btnReadM.Location = new System.Drawing.Point(116, 69); this.btnReadM.Name = "btnReadM"; this.btnReadM.Size = new System.Drawing.Size(75, 23); this.btnReadM.TabIndex = 5; this.btnReadM.Text = "Read"; this.btnReadM.UseVisualStyleBackColor = true; this.btnReadM.Click += new System.EventHandler(this.btnReadM_Click); // // btnWriteD // this.btnWriteD.Enabled = false; this.btnWriteD.Location = new System.Drawing.Point(197, 40); this.btnWriteD.Name = "btnWriteD"; this.btnWriteD.Size = new System.Drawing.Size(75, 23); this.btnWriteD.TabIndex = 3; this.btnWriteD.Text = "Write"; this.btnWriteD.UseVisualStyleBackColor = true; this.btnWriteD.Click += new System.EventHandler(this.btnWriteD_Click); // // btnReadD // this.btnReadD.Enabled = false; this.btnReadD.Location = new System.Drawing.Point(116, 40); this.btnReadD.Name = "btnReadD"; this.btnReadD.Size = new System.Drawing.Size(75, 23); this.btnReadD.TabIndex = 2; this.btnReadD.Text = "Read"; this.btnReadD.UseVisualStyleBackColor = true; this.btnReadD.Click += new System.EventHandler(this.btnReadD_Click); // // lblY // this.lblY.AutoSize = true; this.lblY.Location = new System.Drawing.Point(11, 132); this.lblY.Name = "lblY"; this.lblY.Size = new System.Drawing.Size(96, 12); this.lblY.TabIndex = 10; this.lblY.Text = "Y1E (Elements=2)"; // // lblX // this.lblX.AutoSize = true; this.lblX.Location = new System.Drawing.Point(11, 103); this.lblX.Name = "lblX"; this.lblX.Size = new System.Drawing.Size(25, 12); this.lblX.TabIndex = 7; this.lblX.Text = "X1E"; // // lblM // this.lblM.AutoSize = true; this.lblM.Location = new System.Drawing.Point(11, 74); this.lblM.Name = "lblM"; this.lblM.Size = new System.Drawing.Size(94, 12); this.lblM.TabIndex = 4; this.lblM.Text = "M16 (Type=Word)"; // // lblD // this.lblD.AutoSize = true; this.lblD.Location = new System.Drawing.Point(11, 45); this.lblD.Name = "lblD"; this.lblD.Size = new System.Drawing.Size(25, 12); this.lblD.TabIndex = 1; this.lblD.Text = "D16"; // // lblDsp // this.lblDsp.BackColor = System.Drawing.Color.White; this.lblDsp.Location = new System.Drawing.Point(11, 10); this.lblDsp.Name = "lblDsp"; this.lblDsp.Size = new System.Drawing.Size(261, 20); this.lblDsp.TabIndex = 0; this.lblDsp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(309, 302); this.Controls.Add(this.pnlVariable); this.Controls.Add(this.pnlConnect); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.pnlConnect.ResumeLayout(false); this.pnlVariable.ResumeLayout(false); this.pnlVariable.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button btnConnect; private System.Windows.Forms.Button btnDisconnect; private System.Windows.Forms.Panel pnlConnect; private System.Windows.Forms.Panel pnlVariable; private System.Windows.Forms.Label lblY; private System.Windows.Forms.Label lblX; private System.Windows.Forms.Label lblM; private System.Windows.Forms.Label lblD; private System.Windows.Forms.Label lblDsp; private System.Windows.Forms.Button btnWriteY; private System.Windows.Forms.Button btnReadY; private System.Windows.Forms.Button btnWriteX; private System.Windows.Forms.Button btnReadX; private System.Windows.Forms.Button btnWriteM; private System.Windows.Forms.Button btnReadM; private System.Windows.Forms.Button btnWriteD; private System.Windows.Forms.Button btnReadD; } }