forked from lipoyang/SOEM.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormMain.Designer.cs
217 lines (211 loc) · 9.66 KB
/
FormMain.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
namespace EasyTest
{
partial class FormMain
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージド リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.buttonDisconnect = new System.Windows.Forms.Button();
this.buttonConnect = new System.Windows.Forms.Button();
this.comboNicName = new System.Windows.Forms.ComboBox();
this.buttonUpdate = new System.Windows.Forms.Button();
this.trackBar1 = new System.Windows.Forms.TrackBar();
this.trackBar2 = new System.Windows.Forms.TrackBar();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.joystickBar2 = new EasyTest.JoystickBar();
this.joystickBar1 = new EasyTest.JoystickBar();
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar2)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(31, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(52, 12);
this.label1.TabIndex = 0;
this.label1.Text = "アダプタ名";
//
// buttonDisconnect
//
this.buttonDisconnect.Location = new System.Drawing.Point(506, 48);
this.buttonDisconnect.Name = "buttonDisconnect";
this.buttonDisconnect.Size = new System.Drawing.Size(89, 23);
this.buttonDisconnect.TabIndex = 6;
this.buttonDisconnect.Text = "切断";
this.buttonDisconnect.UseVisualStyleBackColor = true;
this.buttonDisconnect.Click += new System.EventHandler(this.buttonDisconnect_Click);
//
// buttonConnect
//
this.buttonConnect.Location = new System.Drawing.Point(506, 19);
this.buttonConnect.Name = "buttonConnect";
this.buttonConnect.Size = new System.Drawing.Size(89, 23);
this.buttonConnect.TabIndex = 5;
this.buttonConnect.Text = "接続";
this.buttonConnect.UseVisualStyleBackColor = true;
this.buttonConnect.Click += new System.EventHandler(this.buttonConnect_Click);
//
// comboNicName
//
this.comboNicName.FormattingEnabled = true;
this.comboNicName.Location = new System.Drawing.Point(107, 21);
this.comboNicName.Name = "comboNicName";
this.comboNicName.Size = new System.Drawing.Size(235, 20);
this.comboNicName.TabIndex = 2;
//
// buttonUpdate
//
this.buttonUpdate.Location = new System.Drawing.Point(369, 19);
this.buttonUpdate.Name = "buttonUpdate";
this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
this.buttonUpdate.TabIndex = 4;
this.buttonUpdate.Text = "更新";
this.buttonUpdate.UseVisualStyleBackColor = true;
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
//
// trackBar1
//
this.trackBar1.LargeChange = 10;
this.trackBar1.Location = new System.Drawing.Point(99, 93);
this.trackBar1.Maximum = 180;
this.trackBar1.Name = "trackBar1";
this.trackBar1.Size = new System.Drawing.Size(339, 45);
this.trackBar1.TabIndex = 7;
this.trackBar1.TickFrequency = 10;
this.trackBar1.Value = 90;
this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
//
// trackBar2
//
this.trackBar2.LargeChange = 10;
this.trackBar2.Location = new System.Drawing.Point(99, 144);
this.trackBar2.Maximum = 180;
this.trackBar2.Name = "trackBar2";
this.trackBar2.Size = new System.Drawing.Size(339, 45);
this.trackBar2.TabIndex = 8;
this.trackBar2.TickFrequency = 10;
this.trackBar2.Value = 90;
this.trackBar2.Scroll += new System.EventHandler(this.trackBar2_Scroll);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(31, 93);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 12;
this.label2.Text = "サーボ1";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(31, 144);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 12);
this.label3.TabIndex = 13;
this.label3.Text = "サーボ2";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(31, 209);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(56, 12);
this.label4.TabIndex = 14;
this.label4.Text = "ボリューム1";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(31, 256);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(56, 12);
this.label5.TabIndex = 15;
this.label5.Text = "ボリューム2";
//
// joystickBar2
//
this.joystickBar2.Location = new System.Drawing.Point(108, 256);
this.joystickBar2.Maximum = 1024;
this.joystickBar2.Name = "joystickBar2";
this.joystickBar2.Size = new System.Drawing.Size(319, 23);
this.joystickBar2.TabIndex = 11;
//
// joystickBar1
//
this.joystickBar1.Location = new System.Drawing.Point(108, 209);
this.joystickBar1.Maximum = 1024;
this.joystickBar1.Name = "joystickBar1";
this.joystickBar1.Size = new System.Drawing.Size(319, 23);
this.joystickBar1.TabIndex = 10;
//
// FormMain
//
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(641, 317);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.joystickBar2);
this.Controls.Add(this.joystickBar1);
this.Controls.Add(this.trackBar2);
this.Controls.Add(this.trackBar1);
this.Controls.Add(this.label1);
this.Controls.Add(this.buttonDisconnect);
this.Controls.Add(this.buttonConnect);
this.Controls.Add(this.buttonUpdate);
this.Controls.Add(this.comboNicName);
this.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.Name = "FormMain";
this.Text = "EasyCAT Test";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox comboNicName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button buttonDisconnect;
private System.Windows.Forms.Button buttonConnect;
private System.Windows.Forms.Button buttonUpdate;
private System.Windows.Forms.TrackBar trackBar1;
private System.Windows.Forms.TrackBar trackBar2;
private JoystickBar joystickBar1;
private JoystickBar joystickBar2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
}
}