namespace RscTest1 { 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.runButton = new System.Windows.Forms.Button(); this.servoNum = new System.Windows.Forms.TextBox(); this.servoPos = new System.Windows.Forms.TextBox(); this.servoSpd = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.id = new System.Windows.Forms.ComboBox(); this.label4 = new System.Windows.Forms.Label(); this.serialPort1 = new System.IO.Ports.SerialPort(this.components); this.SuspendLayout(); // // runButton // this.runButton.Location = new System.Drawing.Point(92, 130); this.runButton.Name = "runButton"; this.runButton.Size = new System.Drawing.Size(75, 23); this.runButton.TabIndex = 0; this.runButton.Text = "実行"; this.runButton.UseVisualStyleBackColor = true; this.runButton.Click += new System.EventHandler(this.runButton_Click); // // servoNum // this.servoNum.Location = new System.Drawing.Point(13, 80); this.servoNum.Name = "servoNum"; this.servoNum.Size = new System.Drawing.Size(57, 19); this.servoNum.TabIndex = 1; this.servoNum.Text = "0"; // // servoPos // this.servoPos.Location = new System.Drawing.Point(101, 80); this.servoPos.Name = "servoPos"; this.servoPos.Size = new System.Drawing.Size(57, 19); this.servoPos.TabIndex = 2; this.servoPos.Text = "127"; // // servoSpd // this.servoSpd.Location = new System.Drawing.Point(182, 80); this.servoSpd.Name = "servoSpd"; this.servoSpd.Size = new System.Drawing.Size(71, 19); this.servoSpd.TabIndex = 3; this.servoSpd.Text = "20"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(17, 12); this.label1.TabIndex = 4; this.label1.Text = "ID"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 65); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(59, 12); this.label2.TabIndex = 5; this.label2.Text = "サーボ番号"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(99, 65); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(59, 12); this.label3.TabIndex = 6; this.label3.Text = "サーボ位置"; // // id // this.id.FormattingEnabled = true; this.id.Items.AddRange(new object[] { "0", "1", "2", "3"}); this.id.Location = new System.Drawing.Point(13, 24); this.id.Name = "id"; this.id.Size = new System.Drawing.Size(57, 20); this.id.TabIndex = 7; this.id.Text = "3"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(180, 65); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(71, 12); this.label4.TabIndex = 8; this.label4.Text = "速度(x15mS)"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(280, 185); this.Controls.Add(this.label4); this.Controls.Add(this.id); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.servoSpd); this.Controls.Add(this.servoPos); this.Controls.Add(this.servoNum); this.Controls.Add(this.runButton); this.Name = "Form1"; this.Text = "AGB65-RSCのサーボ駆動"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button runButton; private System.Windows.Forms.TextBox servoNum; private System.Windows.Forms.TextBox servoPos; private System.Windows.Forms.TextBox servoSpd; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.ComboBox id; private System.Windows.Forms.Label label4; private System.IO.Ports.SerialPort serialPort1; } }