-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
658 lines (651 loc) · 30.8 KB
/
Form1.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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
namespace ACCServerManager
{
partial class Form1
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.comboBoxTrack = new System.Windows.Forms.ComboBox();
this.lblTrack = new System.Windows.Forms.Label();
this.btnSave = new System.Windows.Forms.Button();
this.btnStartServer = new System.Windows.Forms.Button();
this.checkBoxQualifying = new System.Windows.Forms.CheckBox();
this.checkBoxPractice = new System.Windows.Forms.CheckBox();
this.txtBoxPreRaceWaitingTime = new System.Windows.Forms.TextBox();
this.lblPreRaceWaitingTime = new System.Windows.Forms.Label();
this.lblSessionOverTime = new System.Windows.Forms.Label();
this.txtBoxSessionOverTime = new System.Windows.Forms.TextBox();
this.txtBoxAmbientTemp = new System.Windows.Forms.TextBox();
this.lblAmbientTemp = new System.Windows.Forms.Label();
this.txtBoxCloudLevel = new System.Windows.Forms.TextBox();
this.lblCloudLevel = new System.Windows.Forms.Label();
this.txtBoxRain = new System.Windows.Forms.TextBox();
this.lblRain = new System.Windows.Forms.Label();
this.txtBoxWeatherRandomness = new System.Windows.Forms.TextBox();
this.lblWeatherRandomness = new System.Windows.Forms.Label();
this.comboBoxDayPractice = new System.Windows.Forms.ComboBox();
this.comboBoxDayQualifying = new System.Windows.Forms.ComboBox();
this.comboBoxDayRace = new System.Windows.Forms.ComboBox();
this.lblDayOfWeekend = new System.Windows.Forms.Label();
this.txtBoxHourPractice = new System.Windows.Forms.TextBox();
this.lblHourOfDay = new System.Windows.Forms.Label();
this.txtBoxHourQualifying = new System.Windows.Forms.TextBox();
this.txtBoxHourRace = new System.Windows.Forms.TextBox();
this.txtBoxMultiplierPractice = new System.Windows.Forms.TextBox();
this.txtBoxMultiplierQualifying = new System.Windows.Forms.TextBox();
this.txtBoxMultiplierRace = new System.Windows.Forms.TextBox();
this.lblTimeMultiplier = new System.Windows.Forms.Label();
this.txtBoxDurationPractice = new System.Windows.Forms.TextBox();
this.txtBoxDurationQualifying = new System.Windows.Forms.TextBox();
this.txtBoxDurationRace = new System.Windows.Forms.TextBox();
this.lblSessionDuration = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.btnCancel = new System.Windows.Forms.Button();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.lblRace = new System.Windows.Forms.Label();
this.listBoxPresets = new System.Windows.Forms.ListBox();
this.btnDeletePreset = new System.Windows.Forms.Button();
this.btnLoadPreset = new System.Windows.Forms.Button();
this.btnSavePreset = new System.Windows.Forms.Button();
this.lblPresets = new System.Windows.Forms.Label();
this.lblCurrentTrack = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.SuspendLayout();
//
// comboBoxTrack
//
this.comboBoxTrack.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.comboBoxTrack.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.comboBoxTrack.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.comboBoxTrack.ForeColor = System.Drawing.SystemColors.MenuText;
this.comboBoxTrack.FormattingEnabled = true;
this.comboBoxTrack.Items.AddRange(new object[] {
"brands_hatch_2019",
"kyalami_2019",
"laguna_seca_2019",
"hungaroring_2019",
"misano_2019",
"monza_2019",
"mount_panorama_2019",
"nurburgring_2019",
"paul_ricard_2019",
"silverstone_2019",
"spa_2019",
"suzuka_2019",
"zolder_2019",
"zandvoort_2019"});
this.comboBoxTrack.Location = new System.Drawing.Point(31, 46);
this.comboBoxTrack.Name = "comboBoxTrack";
this.comboBoxTrack.Size = new System.Drawing.Size(128, 24);
this.comboBoxTrack.TabIndex = 0;
this.comboBoxTrack.SelectedIndexChanged += new System.EventHandler(this.comboBoxTrack_SelectedIndexChanged);
this.comboBoxTrack.Leave += new System.EventHandler(this.comboBoxTrack_Leave);
//
// lblTrack
//
this.lblTrack.AutoSize = true;
this.lblTrack.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTrack.Location = new System.Drawing.Point(28, 27);
this.lblTrack.Name = "lblTrack";
this.lblTrack.Size = new System.Drawing.Size(43, 16);
this.lblTrack.TabIndex = 1;
this.lblTrack.Text = "Track";
//
// btnSave
//
this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnSave.Location = new System.Drawing.Point(716, 709);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 2;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnStartServer
//
this.btnStartServer.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnStartServer.Location = new System.Drawing.Point(598, 709);
this.btnStartServer.Name = "btnStartServer";
this.btnStartServer.Size = new System.Drawing.Size(75, 23);
this.btnStartServer.TabIndex = 3;
this.btnStartServer.Text = "Start server";
this.btnStartServer.UseVisualStyleBackColor = true;
this.btnStartServer.Click += new System.EventHandler(this.btnStartServer_Click);
//
// checkBoxQualifying
//
this.checkBoxQualifying.AutoSize = true;
this.checkBoxQualifying.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBoxQualifying.Location = new System.Drawing.Point(454, 462);
this.checkBoxQualifying.Name = "checkBoxQualifying";
this.checkBoxQualifying.Size = new System.Drawing.Size(91, 22);
this.checkBoxQualifying.TabIndex = 4;
this.checkBoxQualifying.Text = "Qualifying";
this.checkBoxQualifying.UseVisualStyleBackColor = true;
this.checkBoxQualifying.CheckedChanged += new System.EventHandler(this.checkBoxQualifying_CheckedChanged);
//
// checkBoxPractice
//
this.checkBoxPractice.AutoSize = true;
this.checkBoxPractice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBoxPractice.Location = new System.Drawing.Point(292, 462);
this.checkBoxPractice.Name = "checkBoxPractice";
this.checkBoxPractice.Size = new System.Drawing.Size(81, 22);
this.checkBoxPractice.TabIndex = 5;
this.checkBoxPractice.Text = "Practice";
this.checkBoxPractice.UseVisualStyleBackColor = true;
this.checkBoxPractice.CheckedChanged += new System.EventHandler(this.checkBoxPractice_CheckedChanged);
//
// txtBoxPreRaceWaitingTime
//
this.txtBoxPreRaceWaitingTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBoxPreRaceWaitingTime.Location = new System.Drawing.Point(31, 105);
this.txtBoxPreRaceWaitingTime.Name = "txtBoxPreRaceWaitingTime";
this.txtBoxPreRaceWaitingTime.Size = new System.Drawing.Size(128, 22);
this.txtBoxPreRaceWaitingTime.TabIndex = 6;
this.txtBoxPreRaceWaitingTime.Leave += new System.EventHandler(this.txtBoxPreRaceWaitingTime_Leave);
//
// lblPreRaceWaitingTime
//
this.lblPreRaceWaitingTime.AutoSize = true;
this.lblPreRaceWaitingTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblPreRaceWaitingTime.Location = new System.Drawing.Point(28, 86);
this.lblPreRaceWaitingTime.Name = "lblPreRaceWaitingTime";
this.lblPreRaceWaitingTime.Size = new System.Drawing.Size(131, 16);
this.lblPreRaceWaitingTime.TabIndex = 7;
this.lblPreRaceWaitingTime.Text = "Pre race waiting time";
this.toolTip1.SetToolTip(this.lblPreRaceWaitingTime, "Preparation time before a race. Cannot be less than 30s");
//
// lblSessionOverTime
//
this.lblSessionOverTime.AutoSize = true;
this.lblSessionOverTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblSessionOverTime.Location = new System.Drawing.Point(28, 145);
this.lblSessionOverTime.Name = "lblSessionOverTime";
this.lblSessionOverTime.Size = new System.Drawing.Size(115, 16);
this.lblSessionOverTime.TabIndex = 8;
this.lblSessionOverTime.Text = "Session over time";
this.toolTip1.SetToolTip(this.lblSessionOverTime, resources.GetString("lblSessionOverTime.ToolTip"));
//
// txtBoxSessionOverTime
//
this.txtBoxSessionOverTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBoxSessionOverTime.Location = new System.Drawing.Point(31, 164);
this.txtBoxSessionOverTime.Name = "txtBoxSessionOverTime";
this.txtBoxSessionOverTime.Size = new System.Drawing.Size(128, 22);
this.txtBoxSessionOverTime.TabIndex = 9;
//
// txtBoxAmbientTemp
//
this.txtBoxAmbientTemp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBoxAmbientTemp.Location = new System.Drawing.Point(31, 220);
this.txtBoxAmbientTemp.Name = "txtBoxAmbientTemp";
this.txtBoxAmbientTemp.Size = new System.Drawing.Size(128, 22);
this.txtBoxAmbientTemp.TabIndex = 10;
//
// lblAmbientTemp
//
this.lblAmbientTemp.AutoSize = true;
this.lblAmbientTemp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblAmbientTemp.Location = new System.Drawing.Point(28, 201);
this.lblAmbientTemp.Name = "lblAmbientTemp";
this.lblAmbientTemp.Size = new System.Drawing.Size(90, 16);
this.lblAmbientTemp.TabIndex = 11;
this.lblAmbientTemp.Text = "Ambient temp";
this.toolTip1.SetToolTip(this.lblAmbientTemp, "Sets the baseline ambient temperature in °C.");
//
// txtBoxCloudLevel
//
this.txtBoxCloudLevel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBoxCloudLevel.Location = new System.Drawing.Point(31, 279);
this.txtBoxCloudLevel.Name = "txtBoxCloudLevel";
this.txtBoxCloudLevel.Size = new System.Drawing.Size(128, 22);
this.txtBoxCloudLevel.TabIndex = 12;
//
// lblCloudLevel
//
this.lblCloudLevel.AutoSize = true;
this.lblCloudLevel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblCloudLevel.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblCloudLevel.Location = new System.Drawing.Point(28, 260);
this.lblCloudLevel.Name = "lblCloudLevel";
this.lblCloudLevel.Size = new System.Drawing.Size(75, 16);
this.lblCloudLevel.TabIndex = 13;
this.lblCloudLevel.Text = "Cloud level";
this.toolTip1.SetToolTip(this.lblCloudLevel, "Sets the baseline cloud level (Values 0.0, 0.1, .... 1.0)");
//
// txtBoxRain
//
this.txtBoxRain.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBoxRain.Location = new System.Drawing.Point(31, 334);
this.txtBoxRain.Name = "txtBoxRain";
this.txtBoxRain.Size = new System.Drawing.Size(128, 22);
this.txtBoxRain.TabIndex = 0;
//
// lblRain
//
this.lblRain.AutoSize = true;
this.lblRain.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblRain.Location = new System.Drawing.Point(28, 315);
this.lblRain.Name = "lblRain";
this.lblRain.Size = new System.Drawing.Size(36, 16);
this.lblRain.TabIndex = 14;
this.lblRain.Text = "Rain";
this.toolTip1.SetToolTip(this.lblRain, resources.GetString("lblRain.ToolTip"));
//
// txtBoxWeatherRandomness
//
this.txtBoxWeatherRandomness.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBoxWeatherRandomness.Location = new System.Drawing.Point(31, 391);
this.txtBoxWeatherRandomness.Name = "txtBoxWeatherRandomness";
this.txtBoxWeatherRandomness.Size = new System.Drawing.Size(128, 22);
this.txtBoxWeatherRandomness.TabIndex = 15;
//
// lblWeatherRandomness
//
this.lblWeatherRandomness.AutoSize = true;
this.lblWeatherRandomness.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblWeatherRandomness.Location = new System.Drawing.Point(28, 372);
this.lblWeatherRandomness.Name = "lblWeatherRandomness";
this.lblWeatherRandomness.Size = new System.Drawing.Size(137, 16);
this.lblWeatherRandomness.TabIndex = 16;
this.lblWeatherRandomness.Text = "Weather randomness";
this.toolTip1.SetToolTip(this.lblWeatherRandomness, "Sets the dynamic weather level:\r\n\r\n 0 = static weather\r\n 1 - 4 = fairly rea" +
"listic weather\r\n 5 - 7 = more sensational");
//
// comboBoxDayPractice
//
this.comboBoxDayPractice.FormattingEnabled = true;
this.comboBoxDayPractice.Items.AddRange(new object[] {
"Friday",
"Saturday",
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday"});
this.comboBoxDayPractice.Location = new System.Drawing.Point(292, 546);
this.comboBoxDayPractice.Name = "comboBoxDayPractice";
this.comboBoxDayPractice.Size = new System.Drawing.Size(121, 21);
this.comboBoxDayPractice.TabIndex = 18;
//
// comboBoxDayQualifying
//
this.comboBoxDayQualifying.FormattingEnabled = true;
this.comboBoxDayQualifying.Items.AddRange(new object[] {
"Friday",
"Saturday",
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday"});
this.comboBoxDayQualifying.Location = new System.Drawing.Point(454, 546);
this.comboBoxDayQualifying.Name = "comboBoxDayQualifying";
this.comboBoxDayQualifying.Size = new System.Drawing.Size(121, 21);
this.comboBoxDayQualifying.TabIndex = 18;
//
// comboBoxDayRace
//
this.comboBoxDayRace.FormattingEnabled = true;
this.comboBoxDayRace.Items.AddRange(new object[] {
"Friday",
"Saturday",
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday"});
this.comboBoxDayRace.Location = new System.Drawing.Point(617, 546);
this.comboBoxDayRace.Name = "comboBoxDayRace";
this.comboBoxDayRace.Size = new System.Drawing.Size(121, 21);
this.comboBoxDayRace.TabIndex = 18;
//
// lblDayOfWeekend
//
this.lblDayOfWeekend.AutoSize = true;
this.lblDayOfWeekend.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblDayOfWeekend.Location = new System.Drawing.Point(175, 547);
this.lblDayOfWeekend.Name = "lblDayOfWeekend";
this.lblDayOfWeekend.Size = new System.Drawing.Size(105, 16);
this.lblDayOfWeekend.TabIndex = 19;
this.lblDayOfWeekend.Text = "Day of weekend";
//
// txtBoxHourPractice
//
this.txtBoxHourPractice.Location = new System.Drawing.Point(292, 503);
this.txtBoxHourPractice.Name = "txtBoxHourPractice";
this.txtBoxHourPractice.Size = new System.Drawing.Size(100, 20);
this.txtBoxHourPractice.TabIndex = 20;
//
// lblHourOfDay
//
this.lblHourOfDay.AutoSize = true;
this.lblHourOfDay.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblHourOfDay.Location = new System.Drawing.Point(175, 504);
this.lblHourOfDay.Name = "lblHourOfDay";
this.lblHourOfDay.Size = new System.Drawing.Size(77, 16);
this.lblHourOfDay.TabIndex = 21;
this.lblHourOfDay.Text = "Hour of day";
//
// txtBoxHourQualifying
//
this.txtBoxHourQualifying.Location = new System.Drawing.Point(454, 503);
this.txtBoxHourQualifying.Name = "txtBoxHourQualifying";
this.txtBoxHourQualifying.Size = new System.Drawing.Size(100, 20);
this.txtBoxHourQualifying.TabIndex = 20;
//
// txtBoxHourRace
//
this.txtBoxHourRace.Location = new System.Drawing.Point(617, 503);
this.txtBoxHourRace.Name = "txtBoxHourRace";
this.txtBoxHourRace.Size = new System.Drawing.Size(100, 20);
this.txtBoxHourRace.TabIndex = 20;
//
// txtBoxMultiplierPractice
//
this.txtBoxMultiplierPractice.Location = new System.Drawing.Point(292, 592);
this.txtBoxMultiplierPractice.Name = "txtBoxMultiplierPractice";
this.txtBoxMultiplierPractice.Size = new System.Drawing.Size(100, 20);
this.txtBoxMultiplierPractice.TabIndex = 22;
//
// txtBoxMultiplierQualifying
//
this.txtBoxMultiplierQualifying.Location = new System.Drawing.Point(454, 592);
this.txtBoxMultiplierQualifying.Name = "txtBoxMultiplierQualifying";
this.txtBoxMultiplierQualifying.Size = new System.Drawing.Size(100, 20);
this.txtBoxMultiplierQualifying.TabIndex = 22;
//
// txtBoxMultiplierRace
//
this.txtBoxMultiplierRace.Location = new System.Drawing.Point(617, 592);
this.txtBoxMultiplierRace.Name = "txtBoxMultiplierRace";
this.txtBoxMultiplierRace.Size = new System.Drawing.Size(100, 20);
this.txtBoxMultiplierRace.TabIndex = 22;
//
// lblTimeMultiplier
//
this.lblTimeMultiplier.AutoSize = true;
this.lblTimeMultiplier.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTimeMultiplier.Location = new System.Drawing.Point(175, 593);
this.lblTimeMultiplier.Name = "lblTimeMultiplier";
this.lblTimeMultiplier.Size = new System.Drawing.Size(95, 16);
this.lblTimeMultiplier.TabIndex = 23;
this.lblTimeMultiplier.Text = "Time multiplier";
//
// txtBoxDurationPractice
//
this.txtBoxDurationPractice.Location = new System.Drawing.Point(292, 641);
this.txtBoxDurationPractice.Name = "txtBoxDurationPractice";
this.txtBoxDurationPractice.Size = new System.Drawing.Size(100, 20);
this.txtBoxDurationPractice.TabIndex = 24;
//
// txtBoxDurationQualifying
//
this.txtBoxDurationQualifying.Location = new System.Drawing.Point(454, 641);
this.txtBoxDurationQualifying.Name = "txtBoxDurationQualifying";
this.txtBoxDurationQualifying.Size = new System.Drawing.Size(100, 20);
this.txtBoxDurationQualifying.TabIndex = 24;
//
// txtBoxDurationRace
//
this.txtBoxDurationRace.Location = new System.Drawing.Point(617, 641);
this.txtBoxDurationRace.Name = "txtBoxDurationRace";
this.txtBoxDurationRace.Size = new System.Drawing.Size(100, 20);
this.txtBoxDurationRace.TabIndex = 24;
//
// lblSessionDuration
//
this.lblSessionDuration.AutoSize = true;
this.lblSessionDuration.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblSessionDuration.Location = new System.Drawing.Point(175, 642);
this.lblSessionDuration.Name = "lblSessionDuration";
this.lblSessionDuration.Size = new System.Drawing.Size(108, 16);
this.lblSessionDuration.TabIndex = 25;
this.lblSessionDuration.Text = "Session duration";
//
// toolTip1
//
this.toolTip1.AutoPopDelay = 30000;
this.toolTip1.InitialDelay = 500;
this.toolTip1.ReshowDelay = 100;
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(232, 41);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(362, 330);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 27;
this.pictureBox1.TabStop = false;
//
// btnCancel
//
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCancel.Location = new System.Drawing.Point(891, 709);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 29;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// pictureBox2
//
this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
this.pictureBox2.Location = new System.Drawing.Point(3, 661);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(156, 97);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox2.TabIndex = 30;
this.pictureBox2.TabStop = false;
//
// lblRace
//
this.lblRace.AutoSize = true;
this.lblRace.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblRace.Location = new System.Drawing.Point(614, 466);
this.lblRace.Name = "lblRace";
this.lblRace.Size = new System.Drawing.Size(43, 18);
this.lblRace.TabIndex = 31;
this.lblRace.Text = "Race";
//
// listBoxPresets
//
this.listBoxPresets.BackColor = System.Drawing.SystemColors.Control;
this.listBoxPresets.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listBoxPresets.ForeColor = System.Drawing.Color.Black;
this.listBoxPresets.FormattingEnabled = true;
this.listBoxPresets.ItemHeight = 16;
this.listBoxPresets.Location = new System.Drawing.Point(752, 52);
this.listBoxPresets.Name = "listBoxPresets";
this.listBoxPresets.Size = new System.Drawing.Size(214, 372);
this.listBoxPresets.TabIndex = 32;
//
// btnDeletePreset
//
this.btnDeletePreset.Location = new System.Drawing.Point(888, 430);
this.btnDeletePreset.Name = "btnDeletePreset";
this.btnDeletePreset.Size = new System.Drawing.Size(78, 23);
this.btnDeletePreset.TabIndex = 33;
this.btnDeletePreset.Text = "Delete";
this.btnDeletePreset.UseVisualStyleBackColor = true;
this.btnDeletePreset.Click += new System.EventHandler(this.btnDeletePreset_Click);
//
// btnLoadPreset
//
this.btnLoadPreset.Location = new System.Drawing.Point(794, 430);
this.btnLoadPreset.Name = "btnLoadPreset";
this.btnLoadPreset.Size = new System.Drawing.Size(78, 23);
this.btnLoadPreset.TabIndex = 34;
this.btnLoadPreset.Text = "Load";
this.btnLoadPreset.UseVisualStyleBackColor = true;
this.btnLoadPreset.Click += new System.EventHandler(this.btnLoadPreset_Click);
//
// btnSavePreset
//
this.btnSavePreset.Location = new System.Drawing.Point(797, 709);
this.btnSavePreset.Name = "btnSavePreset";
this.btnSavePreset.Size = new System.Drawing.Size(75, 23);
this.btnSavePreset.TabIndex = 35;
this.btnSavePreset.Text = "Save preset";
this.btnSavePreset.UseVisualStyleBackColor = true;
this.btnSavePreset.Click += new System.EventHandler(this.btnSavePreset_Click);
//
// lblPresets
//
this.lblPresets.AutoSize = true;
this.lblPresets.Location = new System.Drawing.Point(749, 29);
this.lblPresets.Name = "lblPresets";
this.lblPresets.Size = new System.Drawing.Size(42, 13);
this.lblPresets.TabIndex = 36;
this.lblPresets.Text = "Presets";
//
// lblCurrentTrack
//
this.lblCurrentTrack.AutoSize = true;
this.lblCurrentTrack.BackColor = System.Drawing.Color.Transparent;
this.lblCurrentTrack.Font = new System.Drawing.Font("Microsoft New Tai Lue", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblCurrentTrack.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
this.lblCurrentTrack.Location = new System.Drawing.Point(221, 374);
this.lblCurrentTrack.Name = "lblCurrentTrack";
this.lblCurrentTrack.Size = new System.Drawing.Size(235, 63);
this.lblCurrentTrack.TabIndex = 37;
this.lblCurrentTrack.Text = "SomeText";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(987, 744);
this.Controls.Add(this.lblCurrentTrack);
this.Controls.Add(this.lblPresets);
this.Controls.Add(this.btnSavePreset);
this.Controls.Add(this.btnLoadPreset);
this.Controls.Add(this.btnDeletePreset);
this.Controls.Add(this.listBoxPresets);
this.Controls.Add(this.lblRace);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.lblSessionDuration);
this.Controls.Add(this.txtBoxDurationRace);
this.Controls.Add(this.txtBoxDurationQualifying);
this.Controls.Add(this.txtBoxDurationPractice);
this.Controls.Add(this.lblTimeMultiplier);
this.Controls.Add(this.txtBoxMultiplierRace);
this.Controls.Add(this.txtBoxMultiplierQualifying);
this.Controls.Add(this.txtBoxMultiplierPractice);
this.Controls.Add(this.lblHourOfDay);
this.Controls.Add(this.txtBoxHourRace);
this.Controls.Add(this.txtBoxHourQualifying);
this.Controls.Add(this.txtBoxHourPractice);
this.Controls.Add(this.lblDayOfWeekend);
this.Controls.Add(this.comboBoxDayRace);
this.Controls.Add(this.comboBoxDayQualifying);
this.Controls.Add(this.comboBoxDayPractice);
this.Controls.Add(this.lblWeatherRandomness);
this.Controls.Add(this.txtBoxWeatherRandomness);
this.Controls.Add(this.lblRain);
this.Controls.Add(this.txtBoxRain);
this.Controls.Add(this.lblCloudLevel);
this.Controls.Add(this.txtBoxCloudLevel);
this.Controls.Add(this.lblAmbientTemp);
this.Controls.Add(this.txtBoxAmbientTemp);
this.Controls.Add(this.txtBoxSessionOverTime);
this.Controls.Add(this.lblSessionOverTime);
this.Controls.Add(this.lblPreRaceWaitingTime);
this.Controls.Add(this.txtBoxPreRaceWaitingTime);
this.Controls.Add(this.checkBoxPractice);
this.Controls.Add(this.checkBoxQualifying);
this.Controls.Add(this.btnStartServer);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.lblTrack);
this.Controls.Add(this.comboBoxTrack);
this.Controls.Add(this.pictureBox2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ACC Server Manager";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox comboBoxTrack;
private System.Windows.Forms.Label lblTrack;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnStartServer;
private System.Windows.Forms.CheckBox checkBoxQualifying;
private System.Windows.Forms.CheckBox checkBoxPractice;
private System.Windows.Forms.TextBox txtBoxPreRaceWaitingTime;
private System.Windows.Forms.Label lblPreRaceWaitingTime;
private System.Windows.Forms.Label lblSessionOverTime;
private System.Windows.Forms.TextBox txtBoxSessionOverTime;
private System.Windows.Forms.TextBox txtBoxAmbientTemp;
private System.Windows.Forms.Label lblAmbientTemp;
private System.Windows.Forms.TextBox txtBoxCloudLevel;
private System.Windows.Forms.Label lblCloudLevel;
private System.Windows.Forms.TextBox txtBoxRain;
private System.Windows.Forms.Label lblRain;
private System.Windows.Forms.TextBox txtBoxWeatherRandomness;
private System.Windows.Forms.Label lblWeatherRandomness;
private System.Windows.Forms.ComboBox comboBoxDayPractice;
private System.Windows.Forms.ComboBox comboBoxDayQualifying;
private System.Windows.Forms.ComboBox comboBoxDayRace;
private System.Windows.Forms.Label lblDayOfWeekend;
private System.Windows.Forms.TextBox txtBoxHourPractice;
private System.Windows.Forms.Label lblHourOfDay;
private System.Windows.Forms.TextBox txtBoxHourQualifying;
private System.Windows.Forms.TextBox txtBoxHourRace;
private System.Windows.Forms.TextBox txtBoxMultiplierPractice;
private System.Windows.Forms.TextBox txtBoxMultiplierQualifying;
private System.Windows.Forms.TextBox txtBoxMultiplierRace;
private System.Windows.Forms.Label lblTimeMultiplier;
private System.Windows.Forms.TextBox txtBoxDurationPractice;
private System.Windows.Forms.TextBox txtBoxDurationQualifying;
private System.Windows.Forms.TextBox txtBoxDurationRace;
private System.Windows.Forms.Label lblSessionDuration;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Label lblRace;
private System.Windows.Forms.ListBox listBoxPresets;
private System.Windows.Forms.Button btnDeletePreset;
private System.Windows.Forms.Button btnLoadPreset;
private System.Windows.Forms.Button btnSavePreset;
private System.Windows.Forms.Label lblPresets;
private System.Windows.Forms.Label lblCurrentTrack;
}
}