-
Notifications
You must be signed in to change notification settings - Fork 0
/
SettingsEditor.Designer.cs
371 lines (365 loc) · 17.4 KB
/
SettingsEditor.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
namespace AzimuthSuite
{
partial class SettingsEditor
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsEditor));
this.cancelBtn = new System.Windows.Forms.Button();
this.okBtn = new System.Windows.Forms.Button();
this.isUseAUXGNSSChb = new System.Windows.Forms.CheckBox();
this.remotesList = new System.Windows.Forms.CheckedListBox();
this.remotesPanel = new System.Windows.Forms.Panel();
this.remotesListToolStrip = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.remotesCheckAllBtn = new System.Windows.Forms.ToolStripButton();
this.remotesUncheckAllBtn = new System.Windows.Forms.ToolStripButton();
this.auxGNSSGroup = new System.Windows.Forms.GroupBox();
this.auxGNSSBaudrateCbx = new System.Windows.Forms.ComboBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.styDialogBtn = new System.Windows.Forms.Button();
this.styEdit = new System.Windows.Forms.NumericUpDown();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.maxRangeEdit = new System.Windows.Forms.NumericUpDown();
this.setDaultsBtn = new System.Windows.Forms.Button();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.xOffsetEdit = new System.Windows.Forms.NumericUpDown();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.yOffsetEdit = new System.Windows.Forms.NumericUpDown();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.antennaAdjustAngleEdit = new System.Windows.Forms.NumericUpDown();
this.serialOutputGroup = new System.Windows.Forms.GroupBox();
this.outputPortBaudrateCbx = new System.Windows.Forms.ComboBox();
this.IsUseMagneticCompassOnlyChb = new System.Windows.Forms.CheckBox();
this.remotesPanel.SuspendLayout();
this.remotesListToolStrip.SuspendLayout();
this.auxGNSSGroup.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.styEdit)).BeginInit();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.maxRangeEdit)).BeginInit();
this.groupBox4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.xOffsetEdit)).BeginInit();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.yOffsetEdit)).BeginInit();
this.groupBox6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.antennaAdjustAngleEdit)).BeginInit();
this.serialOutputGroup.SuspendLayout();
this.SuspendLayout();
//
// cancelBtn
//
resources.ApplyResources(this.cancelBtn, "cancelBtn");
this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelBtn.Name = "cancelBtn";
this.cancelBtn.UseVisualStyleBackColor = true;
//
// okBtn
//
resources.ApplyResources(this.okBtn, "okBtn");
this.okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okBtn.Name = "okBtn";
this.okBtn.UseVisualStyleBackColor = true;
//
// isUseAUXGNSSChb
//
resources.ApplyResources(this.isUseAUXGNSSChb, "isUseAUXGNSSChb");
this.isUseAUXGNSSChb.Name = "isUseAUXGNSSChb";
this.isUseAUXGNSSChb.UseVisualStyleBackColor = true;
this.isUseAUXGNSSChb.CheckedChanged += new System.EventHandler(this.isUseAUXGNSSChb_CheckedChanged);
//
// remotesList
//
resources.ApplyResources(this.remotesList, "remotesList");
this.remotesList.FormattingEnabled = true;
this.remotesList.Name = "remotesList";
this.remotesList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.remotesList_ItemCheck);
//
// remotesPanel
//
resources.ApplyResources(this.remotesPanel, "remotesPanel");
this.remotesPanel.Controls.Add(this.remotesListToolStrip);
this.remotesPanel.Controls.Add(this.remotesList);
this.remotesPanel.Name = "remotesPanel";
//
// remotesListToolStrip
//
this.remotesListToolStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
this.remotesListToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1,
this.toolStripSeparator1,
this.remotesCheckAllBtn,
this.remotesUncheckAllBtn});
resources.ApplyResources(this.remotesListToolStrip, "remotesListToolStrip");
this.remotesListToolStrip.Name = "remotesListToolStrip";
//
// toolStripLabel1
//
this.toolStripLabel1.Name = "toolStripLabel1";
resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
//
// remotesCheckAllBtn
//
this.remotesCheckAllBtn.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.remotesCheckAllBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.remotesCheckAllBtn, "remotesCheckAllBtn");
this.remotesCheckAllBtn.Name = "remotesCheckAllBtn";
this.remotesCheckAllBtn.Click += new System.EventHandler(this.remotesCheckAllBtn_Click);
//
// remotesUncheckAllBtn
//
this.remotesUncheckAllBtn.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.remotesUncheckAllBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.remotesUncheckAllBtn, "remotesUncheckAllBtn");
this.remotesUncheckAllBtn.Name = "remotesUncheckAllBtn";
this.remotesUncheckAllBtn.Click += new System.EventHandler(this.remotesUncheckAllBtn_Click);
//
// auxGNSSGroup
//
this.auxGNSSGroup.Controls.Add(this.auxGNSSBaudrateCbx);
resources.ApplyResources(this.auxGNSSGroup, "auxGNSSGroup");
this.auxGNSSGroup.Name = "auxGNSSGroup";
this.auxGNSSGroup.TabStop = false;
//
// auxGNSSBaudrateCbx
//
resources.ApplyResources(this.auxGNSSBaudrateCbx, "auxGNSSBaudrateCbx");
this.auxGNSSBaudrateCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.auxGNSSBaudrateCbx.FormattingEnabled = true;
this.auxGNSSBaudrateCbx.Name = "auxGNSSBaudrateCbx";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.styDialogBtn);
this.groupBox2.Controls.Add(this.styEdit);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// styDialogBtn
//
resources.ApplyResources(this.styDialogBtn, "styDialogBtn");
this.styDialogBtn.Name = "styDialogBtn";
this.styDialogBtn.UseVisualStyleBackColor = true;
this.styDialogBtn.Click += new System.EventHandler(this.styDialogBtn_Click);
//
// styEdit
//
resources.ApplyResources(this.styEdit, "styEdit");
this.styEdit.DecimalPlaces = 1;
this.styEdit.Maximum = new decimal(new int[] {
40,
0,
0,
0});
this.styEdit.Name = "styEdit";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.maxRangeEdit);
resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
//
// maxRangeEdit
//
resources.ApplyResources(this.maxRangeEdit, "maxRangeEdit");
this.maxRangeEdit.Increment = new decimal(new int[] {
500,
0,
0,
0});
this.maxRangeEdit.Maximum = new decimal(new int[] {
5999,
0,
0,
0});
this.maxRangeEdit.Minimum = new decimal(new int[] {
500,
0,
0,
0});
this.maxRangeEdit.Name = "maxRangeEdit";
this.maxRangeEdit.Value = new decimal(new int[] {
1000,
0,
0,
0});
//
// setDaultsBtn
//
resources.ApplyResources(this.setDaultsBtn, "setDaultsBtn");
this.setDaultsBtn.Name = "setDaultsBtn";
this.setDaultsBtn.UseVisualStyleBackColor = true;
this.setDaultsBtn.Click += new System.EventHandler(this.setDaultsBtn_Click);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.xOffsetEdit);
resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
//
// xOffsetEdit
//
resources.ApplyResources(this.xOffsetEdit, "xOffsetEdit");
this.xOffsetEdit.DecimalPlaces = 1;
this.xOffsetEdit.Maximum = new decimal(new int[] {
40,
0,
0,
0});
this.xOffsetEdit.Name = "xOffsetEdit";
//
// groupBox5
//
this.groupBox5.Controls.Add(this.yOffsetEdit);
resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
//
// yOffsetEdit
//
resources.ApplyResources(this.yOffsetEdit, "yOffsetEdit");
this.yOffsetEdit.DecimalPlaces = 1;
this.yOffsetEdit.Maximum = new decimal(new int[] {
40,
0,
0,
0});
this.yOffsetEdit.Name = "yOffsetEdit";
//
// groupBox6
//
this.groupBox6.Controls.Add(this.antennaAdjustAngleEdit);
resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
//
// antennaAdjustAngleEdit
//
resources.ApplyResources(this.antennaAdjustAngleEdit, "antennaAdjustAngleEdit");
this.antennaAdjustAngleEdit.DecimalPlaces = 1;
this.antennaAdjustAngleEdit.Maximum = new decimal(new int[] {
40,
0,
0,
0});
this.antennaAdjustAngleEdit.Name = "antennaAdjustAngleEdit";
//
// serialOutputGroup
//
this.serialOutputGroup.Controls.Add(this.outputPortBaudrateCbx);
resources.ApplyResources(this.serialOutputGroup, "serialOutputGroup");
this.serialOutputGroup.Name = "serialOutputGroup";
this.serialOutputGroup.TabStop = false;
//
// outputPortBaudrateCbx
//
resources.ApplyResources(this.outputPortBaudrateCbx, "outputPortBaudrateCbx");
this.outputPortBaudrateCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.outputPortBaudrateCbx.FormattingEnabled = true;
this.outputPortBaudrateCbx.Name = "outputPortBaudrateCbx";
//
// IsUseMagneticCompassOnlyChb
//
resources.ApplyResources(this.IsUseMagneticCompassOnlyChb, "IsUseMagneticCompassOnlyChb");
this.IsUseMagneticCompassOnlyChb.Name = "IsUseMagneticCompassOnlyChb";
this.IsUseMagneticCompassOnlyChb.UseVisualStyleBackColor = true;
//
// SettingsEditor
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.IsUseMagneticCompassOnlyChb);
this.Controls.Add(this.serialOutputGroup);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.setDaultsBtn);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.auxGNSSGroup);
this.Controls.Add(this.remotesPanel);
this.Controls.Add(this.isUseAUXGNSSChb);
this.Controls.Add(this.okBtn);
this.Controls.Add(this.cancelBtn);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "SettingsEditor";
this.ShowIcon = false;
this.remotesPanel.ResumeLayout(false);
this.remotesPanel.PerformLayout();
this.remotesListToolStrip.ResumeLayout(false);
this.remotesListToolStrip.PerformLayout();
this.auxGNSSGroup.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.styEdit)).EndInit();
this.groupBox3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.maxRangeEdit)).EndInit();
this.groupBox4.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.xOffsetEdit)).EndInit();
this.groupBox5.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.yOffsetEdit)).EndInit();
this.groupBox6.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.antennaAdjustAngleEdit)).EndInit();
this.serialOutputGroup.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button cancelBtn;
private System.Windows.Forms.Button okBtn;
private System.Windows.Forms.CheckBox isUseAUXGNSSChb;
private System.Windows.Forms.CheckedListBox remotesList;
private System.Windows.Forms.Panel remotesPanel;
private System.Windows.Forms.ToolStrip remotesListToolStrip;
private System.Windows.Forms.ToolStripLabel toolStripLabel1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton remotesCheckAllBtn;
private System.Windows.Forms.ToolStripButton remotesUncheckAllBtn;
private System.Windows.Forms.GroupBox auxGNSSGroup;
private System.Windows.Forms.ComboBox auxGNSSBaudrateCbx;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.NumericUpDown styEdit;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.NumericUpDown maxRangeEdit;
private System.Windows.Forms.Button setDaultsBtn;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.NumericUpDown xOffsetEdit;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.NumericUpDown yOffsetEdit;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.NumericUpDown antennaAdjustAngleEdit;
private System.Windows.Forms.Button styDialogBtn;
private System.Windows.Forms.GroupBox serialOutputGroup;
private System.Windows.Forms.ComboBox outputPortBaudrateCbx;
private System.Windows.Forms.CheckBox IsUseMagneticCompassOnlyChb;
}
}