namespace QRCode { 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.cmdConnectScanner = new System.Windows.Forms.Button(); this.cmdDisconnectScanner = new System.Windows.Forms.Button(); this.pnlConnect = new System.Windows.Forms.Panel(); this.numudCom = new System.Windows.Forms.NumericUpDown(); this.cmbMode = new System.Windows.Forms.ComboBox(); this.lblMode = new System.Windows.Forms.Label(); this.lblCom = new System.Windows.Forms.Label(); this.pnlCommand = new System.Windows.Forms.Panel(); this.btnClear = new System.Windows.Forms.Button(); this.btnRead = new System.Windows.Forms.Button(); this.lblDsp = new System.Windows.Forms.TextBox(); this.pnlConnect.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numudCom)).BeginInit(); this.pnlCommand.SuspendLayout(); this.SuspendLayout(); // // cmdConnectScanner // this.cmdConnectScanner.Enabled = false; this.cmdConnectScanner.Location = new System.Drawing.Point(31, 63); this.cmdConnectScanner.Name = "cmdConnectScanner"; this.cmdConnectScanner.Size = new System.Drawing.Size(168, 39); this.cmdConnectScanner.TabIndex = 4; this.cmdConnectScanner.Text = "Connect Scanner"; this.cmdConnectScanner.UseVisualStyleBackColor = true; this.cmdConnectScanner.Click += new System.EventHandler(this.cmdConnectScanner_Click); // // cmdDisconnectScanner // this.cmdDisconnectScanner.Enabled = false; this.cmdDisconnectScanner.Location = new System.Drawing.Point(31, 108); this.cmdDisconnectScanner.Name = "cmdDisconnectScanner"; this.cmdDisconnectScanner.Size = new System.Drawing.Size(168, 39); this.cmdDisconnectScanner.TabIndex = 32; this.cmdDisconnectScanner.Text = "Disconnect Scanner"; this.cmdDisconnectScanner.UseVisualStyleBackColor = true; this.cmdDisconnectScanner.Click += new System.EventHandler(this.cmdDisconnectScanner_Click); // // pnlConnect // this.pnlConnect.BackColor = System.Drawing.Color.Lime; this.pnlConnect.Controls.Add(this.numudCom); this.pnlConnect.Controls.Add(this.cmbMode); this.pnlConnect.Controls.Add(this.lblMode); this.pnlConnect.Controls.Add(this.lblCom); this.pnlConnect.Controls.Add(this.cmdDisconnectScanner); this.pnlConnect.Controls.Add(this.cmdConnectScanner); this.pnlConnect.Location = new System.Drawing.Point(25, 12); this.pnlConnect.Name = "pnlConnect"; this.pnlConnect.Size = new System.Drawing.Size(233, 153); this.pnlConnect.TabIndex = 0; // // numudCom // this.numudCom.Location = new System.Drawing.Point(122, 12); this.numudCom.Maximum = new decimal(new int[] { 99, 0, 0, 0}); this.numudCom.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.numudCom.Name = "numudCom"; this.numudCom.Size = new System.Drawing.Size(95, 19); this.numudCom.TabIndex = 35; this.numudCom.Value = new decimal(new int[] { 1, 0, 0, 0}); // // cmbMode // this.cmbMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbMode.FormattingEnabled = true; this.cmbMode.Items.AddRange(new object[] { "EVENT", "COMMAND"}); this.cmbMode.Location = new System.Drawing.Point(122, 37); this.cmbMode.Name = "cmbMode"; this.cmbMode.Size = new System.Drawing.Size(95, 20); this.cmbMode.TabIndex = 34; // // lblMode // this.lblMode.AutoSize = true; this.lblMode.Location = new System.Drawing.Point(17, 40); this.lblMode.Name = "lblMode"; this.lblMode.Size = new System.Drawing.Size(80, 12); this.lblMode.TabIndex = 29; this.lblMode.Text = "Connect Mode:"; // // lblCom // this.lblCom.AutoSize = true; this.lblCom.Location = new System.Drawing.Point(17, 14); this.lblCom.Name = "lblCom"; this.lblCom.Size = new System.Drawing.Size(32, 12); this.lblCom.TabIndex = 29; this.lblCom.Text = "COM:"; // // pnlCommand // this.pnlCommand.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); this.pnlCommand.Controls.Add(this.btnClear); this.pnlCommand.Controls.Add(this.btnRead); this.pnlCommand.Controls.Add(this.lblDsp); this.pnlCommand.Location = new System.Drawing.Point(25, 171); this.pnlCommand.Name = "pnlCommand"; this.pnlCommand.Size = new System.Drawing.Size(231, 309); this.pnlCommand.TabIndex = 31; // // btnClear // this.btnClear.Location = new System.Drawing.Point(31, 240); this.btnClear.Name = "btnClear"; this.btnClear.Size = new System.Drawing.Size(168, 39); this.btnClear.TabIndex = 5; this.btnClear.Text = "Clear"; this.btnClear.UseVisualStyleBackColor = true; this.btnClear.Click += new System.EventHandler(this.btnClear_Click); // // btnRead // this.btnRead.Enabled = false; this.btnRead.Location = new System.Drawing.Point(31, 195); this.btnRead.Name = "btnRead"; this.btnRead.Size = new System.Drawing.Size(168, 39); this.btnRead.TabIndex = 5; this.btnRead.Text = "Read Data"; this.btnRead.UseVisualStyleBackColor = true; this.btnRead.Click += new System.EventHandler(this.btnRead_Click); // // lblDsp // this.lblDsp.Location = new System.Drawing.Point(31, 27); this.lblDsp.Multiline = true; this.lblDsp.Name = "lblDsp"; this.lblDsp.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.lblDsp.Size = new System.Drawing.Size(168, 152); this.lblDsp.TabIndex = 0; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(278, 495); this.Controls.Add(this.pnlCommand); 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.pnlConnect.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numudCom)).EndInit(); this.pnlCommand.ResumeLayout(false); this.pnlCommand.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button cmdConnectScanner; private System.Windows.Forms.Button cmdDisconnectScanner; private System.Windows.Forms.Panel pnlConnect; private System.Windows.Forms.Panel pnlCommand; private System.Windows.Forms.ComboBox cmbMode; private System.Windows.Forms.Label lblCom; private System.Windows.Forms.Label lblMode; private System.Windows.Forms.TextBox lblDsp; private System.Windows.Forms.NumericUpDown numudCom; private System.Windows.Forms.Button btnRead; private System.Windows.Forms.Button btnClear; } }