-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainForm.designer.cs
739 lines (732 loc) · 45.4 KB
/
MainForm.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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
namespace NFL2K5Tool
{
partial class MainForm
{
/// <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(MainForm));
this.mLoadSaveButton = new System.Windows.Forms.Button();
this.mListContentsButton = new System.Windows.Forms.Button();
this.mClearButton = new System.Windows.Forms.Button();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.statusBar1 = new System.Windows.Forms.Label();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loadSaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loadTextFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.applyDataWithoutSavingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.resetKeyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.debugDialogMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listTeamsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listApperanceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listAttributesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listSpecialTeamsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listScheduleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listFreeAgentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listDraftClassToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.coachOptionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listCoachesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.fullCoachAttributesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pCSX2PhotoYAMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.scheduleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.autoCorrectScheduleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.teamPlayersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sortPlayersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editSortFormulasToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.autoUpdateSpecialTeamsDepthToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.autoUpdateDepthChartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.autoUpdatePhotoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.autoUpdatePBPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.formatScheduleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.playerEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.globalEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteTrailingCommasToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.uIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.increaseFontSizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.decreaseFontSizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nameColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.checkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.checkFacesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.checkDreadsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.validateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.checkSpecialTeamsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutCheckOperationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutNFL2K5ToolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.textCommandsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mListPlayersButton2 = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.mSaveButton = new System.Windows.Forms.Button();
this.mLoadTextFileButton = new System.Windows.Forms.Button();
this.pCSX2PhotoBatchFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mTextBox = new NFL2K5Tool.SearchTextBox();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
this.menuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// mLoadSaveButton
//
this.mLoadSaveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.mLoadSaveButton.Location = new System.Drawing.Point(13, 360);
this.mLoadSaveButton.Name = "mLoadSaveButton";
this.mLoadSaveButton.Size = new System.Drawing.Size(75, 23);
this.mLoadSaveButton.TabIndex = 5;
this.mLoadSaveButton.Text = "&Load Save";
this.mLoadSaveButton.UseVisualStyleBackColor = true;
this.mLoadSaveButton.Click += new System.EventHandler(this.mLoadSaveButton_Click);
//
// mListContentsButton
//
this.mListContentsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.mListContentsButton.Enabled = false;
this.mListContentsButton.Location = new System.Drawing.Point(191, 360);
this.mListContentsButton.Name = "mListContentsButton";
this.mListContentsButton.Size = new System.Drawing.Size(119, 23);
this.mListContentsButton.TabIndex = 15;
this.mListContentsButton.Text = "List &Contents";
this.mListContentsButton.UseVisualStyleBackColor = true;
this.mListContentsButton.Click += new System.EventHandler(this.mListContentsButton_Click);
//
// mClearButton
//
this.mClearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.mClearButton.Location = new System.Drawing.Point(316, 360);
this.mClearButton.Name = "mClearButton";
this.mClearButton.Size = new System.Drawing.Size(75, 23);
this.mClearButton.TabIndex = 20;
this.mClearButton.Text = "Clear";
this.mClearButton.UseVisualStyleBackColor = true;
this.mClearButton.Click += new System.EventHandler(this.mClearButton_Click);
//
// numericUpDown1
//
this.numericUpDown1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.numericUpDown1.Location = new System.Drawing.Point(12, 18);
this.numericUpDown1.Maximum = new decimal(new int[] {
1000000,
0,
0,
0});
this.numericUpDown1.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(55, 20);
this.numericUpDown1.TabIndex = 4;
this.numericUpDown1.Value = new decimal(new int[] {
1936,
0,
0,
0});
//
// statusBar1
//
this.statusBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.statusBar1.AutoSize = true;
this.statusBar1.Location = new System.Drawing.Point(13, 390);
this.statusBar1.Name = "statusBar1";
this.statusBar1.Size = new System.Drawing.Size(59, 13);
this.statusBar1.TabIndex = 6;
this.statusBar1.Text = "Load a File";
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.viewToolStripMenuItem,
this.editToolStripMenuItem,
this.uIToolStripMenuItem,
this.checkToolStripMenuItem,
this.aboutToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(678, 24);
this.menuStrip1.TabIndex = 7;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.loadSaveToolStripMenuItem,
this.loadTextFileToolStripMenuItem,
this.applyDataWithoutSavingToolStripMenuItem,
this.resetKeyToolStripMenuItem,
this.saveTextToolStripMenuItem,
this.saveToolStripMenuItem,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// loadSaveToolStripMenuItem
//
this.loadSaveToolStripMenuItem.Name = "loadSaveToolStripMenuItem";
this.loadSaveToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.loadSaveToolStripMenuItem.Text = "&Load Save";
this.loadSaveToolStripMenuItem.Click += new System.EventHandler(this.loadSaveToolStripMenuItem_Click);
//
// loadTextFileToolStripMenuItem
//
this.loadTextFileToolStripMenuItem.Name = "loadTextFileToolStripMenuItem";
this.loadTextFileToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.loadTextFileToolStripMenuItem.Text = "LoadTextFile";
this.loadTextFileToolStripMenuItem.Click += new System.EventHandler(this.loadTextFileAction);
//
// applyDataWithoutSavingToolStripMenuItem
//
this.applyDataWithoutSavingToolStripMenuItem.Name = "applyDataWithoutSavingToolStripMenuItem";
this.applyDataWithoutSavingToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.applyDataWithoutSavingToolStripMenuItem.Text = "Apply data without saving";
this.applyDataWithoutSavingToolStripMenuItem.Click += new System.EventHandler(this.applyDataWithoutSavingToolStripMenuItem_Click);
//
// resetKeyToolStripMenuItem
//
this.resetKeyToolStripMenuItem.Name = "resetKeyToolStripMenuItem";
this.resetKeyToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.resetKeyToolStripMenuItem.Text = "Reset &Key";
this.resetKeyToolStripMenuItem.Click += new System.EventHandler(this.resetKeyToolStripMenuItem_Click);
//
// saveTextToolStripMenuItem
//
this.saveTextToolStripMenuItem.Name = "saveTextToolStripMenuItem";
this.saveTextToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.saveTextToolStripMenuItem.Text = "Save &Text";
this.saveTextToolStripMenuItem.Click += new System.EventHandler(this.saveTextToolStripMenuItem_Click);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.saveToolStripMenuItem.Text = "&Save";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.mSaveButton_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
this.exitToolStripMenuItem.Text = "E&xit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// viewToolStripMenuItem
//
this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.findToolStripMenuItem,
this.debugDialogMenuItem,
this.listTeamsToolStripMenuItem,
this.listApperanceToolStripMenuItem,
this.listAttributesToolStripMenuItem,
this.listSpecialTeamsToolStripMenuItem,
this.listScheduleToolStripMenuItem,
this.listFreeAgentsToolStripMenuItem,
this.listDraftClassToolStripMenuItem,
this.coachOptionsToolStripMenuItem,
this.pCSX2PhotoYAMLToolStripMenuItem,
this.pCSX2PhotoBatchFileToolStripMenuItem});
this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.viewToolStripMenuItem.Text = "&View";
//
// findToolStripMenuItem
//
this.findToolStripMenuItem.Name = "findToolStripMenuItem";
this.findToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.findToolStripMenuItem.Text = "F&ind";
this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
//
// debugDialogMenuItem
//
this.debugDialogMenuItem.Enabled = false;
this.debugDialogMenuItem.Name = "debugDialogMenuItem";
this.debugDialogMenuItem.Size = new System.Drawing.Size(195, 22);
this.debugDialogMenuItem.Text = "&Debug Dialog";
this.debugDialogMenuItem.Click += new System.EventHandler(this.debugDialogMenuItem_Click);
//
// listTeamsToolStripMenuItem
//
this.listTeamsToolStripMenuItem.Checked = true;
this.listTeamsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.listTeamsToolStripMenuItem.Name = "listTeamsToolStripMenuItem";
this.listTeamsToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listTeamsToolStripMenuItem.Text = "List Teams";
this.listTeamsToolStripMenuItem.Click += new System.EventHandler(this.listTeamsToolStripMenuItem_Click);
//
// listApperanceToolStripMenuItem
//
this.listApperanceToolStripMenuItem.Checked = true;
this.listApperanceToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.listApperanceToolStripMenuItem.Name = "listApperanceToolStripMenuItem";
this.listApperanceToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listApperanceToolStripMenuItem.Text = "List Apperance";
this.listApperanceToolStripMenuItem.Click += new System.EventHandler(this.listApperanceToolStripMenuItem_Click);
//
// listAttributesToolStripMenuItem
//
this.listAttributesToolStripMenuItem.Checked = true;
this.listAttributesToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.listAttributesToolStripMenuItem.Name = "listAttributesToolStripMenuItem";
this.listAttributesToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listAttributesToolStripMenuItem.Text = "List Skills";
this.listAttributesToolStripMenuItem.Click += new System.EventHandler(this.listAttributesToolStripMenuItem_Click);
//
// listSpecialTeamsToolStripMenuItem
//
this.listSpecialTeamsToolStripMenuItem.Name = "listSpecialTeamsToolStripMenuItem";
this.listSpecialTeamsToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listSpecialTeamsToolStripMenuItem.Text = "List Special teams";
this.listSpecialTeamsToolStripMenuItem.Click += new System.EventHandler(this.listSpecialTeamsToolStripMenuItem_Click);
//
// listScheduleToolStripMenuItem
//
this.listScheduleToolStripMenuItem.Name = "listScheduleToolStripMenuItem";
this.listScheduleToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listScheduleToolStripMenuItem.Text = "List Schedule";
this.listScheduleToolStripMenuItem.Click += new System.EventHandler(this.listScheduleToolStripMenuItem_Click);
//
// listFreeAgentsToolStripMenuItem
//
this.listFreeAgentsToolStripMenuItem.Name = "listFreeAgentsToolStripMenuItem";
this.listFreeAgentsToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listFreeAgentsToolStripMenuItem.Text = "List Free Agents";
this.listFreeAgentsToolStripMenuItem.Click += new System.EventHandler(this.listFreeAgentsToolStripMenuItem_Click);
//
// listDraftClassToolStripMenuItem
//
this.listDraftClassToolStripMenuItem.Name = "listDraftClassToolStripMenuItem";
this.listDraftClassToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.listDraftClassToolStripMenuItem.Text = "List Draft Class";
this.listDraftClassToolStripMenuItem.Click += new System.EventHandler(this.listDraftClassToolStripMenuItem_Click);
//
// coachOptionsToolStripMenuItem
//
this.coachOptionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.listCoachesToolStripMenuItem1,
this.fullCoachAttributesToolStripMenuItem});
this.coachOptionsToolStripMenuItem.Name = "coachOptionsToolStripMenuItem";
this.coachOptionsToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.coachOptionsToolStripMenuItem.Text = "Coach Options";
//
// listCoachesToolStripMenuItem1
//
this.listCoachesToolStripMenuItem1.Name = "listCoachesToolStripMenuItem1";
this.listCoachesToolStripMenuItem1.Size = new System.Drawing.Size(185, 22);
this.listCoachesToolStripMenuItem1.Text = "List Coaches";
this.listCoachesToolStripMenuItem1.Click += new System.EventHandler(this.listCoachesToolStripMenuItem_Click);
//
// fullCoachAttributesToolStripMenuItem
//
this.fullCoachAttributesToolStripMenuItem.Name = "fullCoachAttributesToolStripMenuItem";
this.fullCoachAttributesToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
this.fullCoachAttributesToolStripMenuItem.Text = "Full Coach Attributes";
this.fullCoachAttributesToolStripMenuItem.Click += new System.EventHandler(this.fullCoachAttributesToolStripMenuItem_Click);
//
// pCSX2PhotoYAMLToolStripMenuItem
//
this.pCSX2PhotoYAMLToolStripMenuItem.Name = "pCSX2PhotoYAMLToolStripMenuItem";
this.pCSX2PhotoYAMLToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.pCSX2PhotoYAMLToolStripMenuItem.Text = "PCSX2 YAML";
this.pCSX2PhotoYAMLToolStripMenuItem.Visible = false;
this.pCSX2PhotoYAMLToolStripMenuItem.Click += new System.EventHandler(this.pCSX2PhotoYAMLToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.scheduleToolStripMenuItem,
this.autoCorrectScheduleToolStripMenuItem,
this.teamPlayersToolStripMenuItem,
this.sortPlayersToolStripMenuItem,
this.editSortFormulasToolStripMenuItem,
this.autoUpdateSpecialTeamsDepthToolStripMenuItem,
this.autoUpdateDepthChartToolStripMenuItem,
this.autoUpdatePhotoToolStripMenuItem,
this.autoUpdatePBPToolStripMenuItem,
this.formatScheduleToolStripMenuItem,
this.playerEditorToolStripMenuItem,
this.globalEditorToolStripMenuItem,
this.deleteTrailingCommasToolStripMenuItem});
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
this.editToolStripMenuItem.Text = "&Edit";
//
// scheduleToolStripMenuItem
//
this.scheduleToolStripMenuItem.Name = "scheduleToolStripMenuItem";
this.scheduleToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.scheduleToolStripMenuItem.Text = "Show &Schedule Now";
this.scheduleToolStripMenuItem.Click += new System.EventHandler(this.scheduleToolStripMenuItem_Click);
//
// autoCorrectScheduleToolStripMenuItem
//
this.autoCorrectScheduleToolStripMenuItem.Name = "autoCorrectScheduleToolStripMenuItem";
this.autoCorrectScheduleToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.autoCorrectScheduleToolStripMenuItem.Text = "Auto Correct Schedule";
this.autoCorrectScheduleToolStripMenuItem.Click += new System.EventHandler(this.autoCorrectScheduleToolStripMenuItem_Click);
//
// teamPlayersToolStripMenuItem
//
this.teamPlayersToolStripMenuItem.Name = "teamPlayersToolStripMenuItem";
this.teamPlayersToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.teamPlayersToolStripMenuItem.Text = "Show &Team Players Now";
this.teamPlayersToolStripMenuItem.Click += new System.EventHandler(this.teamPlayersToolStripMenuItem_Click);
//
// sortPlayersToolStripMenuItem
//
this.sortPlayersToolStripMenuItem.Name = "sortPlayersToolStripMenuItem";
this.sortPlayersToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.sortPlayersToolStripMenuItem.Text = "&Sort Players (Text Operation)";
this.sortPlayersToolStripMenuItem.Click += new System.EventHandler(this.sortPlayersToolStripMenuItem_Click);
//
// editSortFormulasToolStripMenuItem
//
this.editSortFormulasToolStripMenuItem.Name = "editSortFormulasToolStripMenuItem";
this.editSortFormulasToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.editSortFormulasToolStripMenuItem.Text = "&Edit sort formulas";
this.editSortFormulasToolStripMenuItem.Click += new System.EventHandler(this.editSortFormulasToolStripMenuItem_Click);
//
// autoUpdateSpecialTeamsDepthToolStripMenuItem
//
this.autoUpdateSpecialTeamsDepthToolStripMenuItem.Name = "autoUpdateSpecialTeamsDepthToolStripMenuItem";
this.autoUpdateSpecialTeamsDepthToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.autoUpdateSpecialTeamsDepthToolStripMenuItem.Text = "Auto Update Special Teams Depth";
this.autoUpdateSpecialTeamsDepthToolStripMenuItem.Click += new System.EventHandler(this.autoUpdateSpecialTeamsDepthToolStripMenuItem_Click);
//
// autoUpdateDepthChartToolStripMenuItem
//
this.autoUpdateDepthChartToolStripMenuItem.Name = "autoUpdateDepthChartToolStripMenuItem";
this.autoUpdateDepthChartToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.autoUpdateDepthChartToolStripMenuItem.Text = "Auto Update &Depth Chart";
this.autoUpdateDepthChartToolStripMenuItem.Click += new System.EventHandler(this.autoUpdateDepthChartToolStripMenuItem_Click);
//
// autoUpdatePhotoToolStripMenuItem
//
this.autoUpdatePhotoToolStripMenuItem.Name = "autoUpdatePhotoToolStripMenuItem";
this.autoUpdatePhotoToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.autoUpdatePhotoToolStripMenuItem.Text = "Auto update Photo (Text Operation)";
this.autoUpdatePhotoToolStripMenuItem.Click += new System.EventHandler(this.autoUpdatePhotoToolStripMenuItem_Click);
//
// autoUpdatePBPToolStripMenuItem
//
this.autoUpdatePBPToolStripMenuItem.Name = "autoUpdatePBPToolStripMenuItem";
this.autoUpdatePBPToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.autoUpdatePBPToolStripMenuItem.Text = "Auto update PBP (Text Operation)";
this.autoUpdatePBPToolStripMenuItem.Click += new System.EventHandler(this.autoUpdatePBPToolStripMenuItem_Click);
//
// formatScheduleToolStripMenuItem
//
this.formatScheduleToolStripMenuItem.Name = "formatScheduleToolStripMenuItem";
this.formatScheduleToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.formatScheduleToolStripMenuItem.Text = "format Schedule";
this.formatScheduleToolStripMenuItem.Visible = false;
this.formatScheduleToolStripMenuItem.Click += new System.EventHandler(this.formatScheduleToolStripMenuItem_Click);
//
// playerEditorToolStripMenuItem
//
this.playerEditorToolStripMenuItem.Name = "playerEditorToolStripMenuItem";
this.playerEditorToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.playerEditorToolStripMenuItem.Text = "Player Editor";
this.playerEditorToolStripMenuItem.Click += new System.EventHandler(this.playerEditorToolStripMenuItem_Click);
//
// globalEditorToolStripMenuItem
//
this.globalEditorToolStripMenuItem.Name = "globalEditorToolStripMenuItem";
this.globalEditorToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.globalEditorToolStripMenuItem.Text = "&Global Editor";
this.globalEditorToolStripMenuItem.Click += new System.EventHandler(this.globalEditorToolStripMenuItem_Click);
//
// deleteTrailingCommasToolStripMenuItem
//
this.deleteTrailingCommasToolStripMenuItem.Name = "deleteTrailingCommasToolStripMenuItem";
this.deleteTrailingCommasToolStripMenuItem.Size = new System.Drawing.Size(263, 22);
this.deleteTrailingCommasToolStripMenuItem.Text = "Delete Trailing Commas";
this.deleteTrailingCommasToolStripMenuItem.Click += new System.EventHandler(this.deleteTrailingCommasToolStripMenuItem_Click);
//
// uIToolStripMenuItem
//
this.uIToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.increaseFontSizeToolStripMenuItem,
this.decreaseFontSizeToolStripMenuItem,
this.nameColorToolStripMenuItem});
this.uIToolStripMenuItem.Name = "uIToolStripMenuItem";
this.uIToolStripMenuItem.Size = new System.Drawing.Size(30, 20);
this.uIToolStripMenuItem.Text = "UI";
//
// increaseFontSizeToolStripMenuItem
//
this.increaseFontSizeToolStripMenuItem.Name = "increaseFontSizeToolStripMenuItem";
this.increaseFontSizeToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.increaseFontSizeToolStripMenuItem.Text = "&Increase Font size";
this.increaseFontSizeToolStripMenuItem.Click += new System.EventHandler(this.increaseFontSizeToolStripMenuItem_Click);
//
// decreaseFontSizeToolStripMenuItem
//
this.decreaseFontSizeToolStripMenuItem.Name = "decreaseFontSizeToolStripMenuItem";
this.decreaseFontSizeToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.decreaseFontSizeToolStripMenuItem.Text = "&Decrease Font Size";
this.decreaseFontSizeToolStripMenuItem.Click += new System.EventHandler(this.decreaseFontSizeToolStripMenuItem_Click);
//
// nameColorToolStripMenuItem
//
this.nameColorToolStripMenuItem.Name = "nameColorToolStripMenuItem";
this.nameColorToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.nameColorToolStripMenuItem.Text = "&Name Color";
this.nameColorToolStripMenuItem.Click += new System.EventHandler(this.nameColorToolStripMenuItem_Click);
//
// checkToolStripMenuItem
//
this.checkToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.checkFacesToolStripMenuItem,
this.checkDreadsToolStripMenuItem,
this.validateToolStripMenuItem,
this.checkSpecialTeamsToolStripMenuItem,
this.aboutCheckOperationsToolStripMenuItem});
this.checkToolStripMenuItem.Name = "checkToolStripMenuItem";
this.checkToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
this.checkToolStripMenuItem.Text = "Check";
//
// checkFacesToolStripMenuItem
//
this.checkFacesToolStripMenuItem.Name = "checkFacesToolStripMenuItem";
this.checkFacesToolStripMenuItem.Size = new System.Drawing.Size(284, 22);
this.checkFacesToolStripMenuItem.Text = "Check Faces/skin";
this.checkFacesToolStripMenuItem.Click += new System.EventHandler(this.checkFacesToolStripMenuItem_Click);
//
// checkDreadsToolStripMenuItem
//
this.checkDreadsToolStripMenuItem.Name = "checkDreadsToolStripMenuItem";
this.checkDreadsToolStripMenuItem.Size = new System.Drawing.Size(284, 22);
this.checkDreadsToolStripMenuItem.Text = "Check Dreads";
this.checkDreadsToolStripMenuItem.Click += new System.EventHandler(this.checkDreadsToolStripMenuItem_Click);
//
// validateToolStripMenuItem
//
this.validateToolStripMenuItem.Name = "validateToolStripMenuItem";
this.validateToolStripMenuItem.Size = new System.Drawing.Size(284, 22);
this.validateToolStripMenuItem.Text = "Check Players Ht/Wt/Bt(Text Operation)";
this.validateToolStripMenuItem.Click += new System.EventHandler(this.validateToolStripMenuItem_Click);
//
// checkSpecialTeamsToolStripMenuItem
//
this.checkSpecialTeamsToolStripMenuItem.Name = "checkSpecialTeamsToolStripMenuItem";
this.checkSpecialTeamsToolStripMenuItem.Size = new System.Drawing.Size(284, 22);
this.checkSpecialTeamsToolStripMenuItem.Text = "Check Special Teams";
this.checkSpecialTeamsToolStripMenuItem.Click += new System.EventHandler(this.checkSpecialTeamsToolStripMenuItem_Click);
//
// aboutCheckOperationsToolStripMenuItem
//
this.aboutCheckOperationsToolStripMenuItem.Name = "aboutCheckOperationsToolStripMenuItem";
this.aboutCheckOperationsToolStripMenuItem.Size = new System.Drawing.Size(284, 22);
this.aboutCheckOperationsToolStripMenuItem.Text = "About Check operations";
this.aboutCheckOperationsToolStripMenuItem.Click += new System.EventHandler(this.aboutCheckOperationsToolStripMenuItem_Click);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutNFL2K5ToolToolStripMenuItem,
this.textCommandsToolStripMenuItem});
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
this.aboutToolStripMenuItem.Text = "About";
//
// aboutNFL2K5ToolToolStripMenuItem
//
this.aboutNFL2K5ToolToolStripMenuItem.Name = "aboutNFL2K5ToolToolStripMenuItem";
this.aboutNFL2K5ToolToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.aboutNFL2K5ToolToolStripMenuItem.Text = "About NFL2K5Tool";
this.aboutNFL2K5ToolToolStripMenuItem.Click += new System.EventHandler(this.aboutNFL2K5ToolToolStripMenuItem_Click);
//
// textCommandsToolStripMenuItem
//
this.textCommandsToolStripMenuItem.Name = "textCommandsToolStripMenuItem";
this.textCommandsToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.textCommandsToolStripMenuItem.Text = "Text Commands";
this.textCommandsToolStripMenuItem.Click += new System.EventHandler(this.textCommandsToolStripMenuItem_Click);
//
// mListPlayersButton2
//
this.mListPlayersButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.mListPlayersButton2.Enabled = false;
this.mListPlayersButton2.Location = new System.Drawing.Point(73, 15);
this.mListPlayersButton2.Name = "mListPlayersButton2";
this.mListPlayersButton2.Size = new System.Drawing.Size(88, 23);
this.mListPlayersButton2.TabIndex = 8;
this.mListPlayersButton2.Text = "Players";
this.mListPlayersButton2.UseVisualStyleBackColor = true;
this.mListPlayersButton2.Click += new System.EventHandler(this.mListPlayersButton2_Click);
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.numericUpDown1);
this.groupBox1.Controls.Add(this.mListPlayersButton2);
this.groupBox1.Location = new System.Drawing.Point(501, 359);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(169, 44);
this.groupBox1.TabIndex = 9;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "List This many";
this.groupBox1.Visible = false;
//
// mSaveButton
//
this.mSaveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.mSaveButton.Location = new System.Drawing.Point(397, 360);
this.mSaveButton.Name = "mSaveButton";
this.mSaveButton.Size = new System.Drawing.Size(75, 23);
this.mSaveButton.TabIndex = 25;
this.mSaveButton.Text = "&Save";
this.mSaveButton.UseVisualStyleBackColor = true;
this.mSaveButton.Click += new System.EventHandler(this.mSaveButton_Click);
//
// mLoadTextFileButton
//
this.mLoadTextFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.mLoadTextFileButton.Location = new System.Drawing.Point(94, 360);
this.mLoadTextFileButton.Name = "mLoadTextFileButton";
this.mLoadTextFileButton.Size = new System.Drawing.Size(91, 23);
this.mLoadTextFileButton.TabIndex = 10;
this.mLoadTextFileButton.Text = "Load Text File";
this.mLoadTextFileButton.UseVisualStyleBackColor = true;
this.mLoadTextFileButton.Click += new System.EventHandler(this.mLoadTextFileButton_Click);
//
// pCSX2PhotoBatchFileToolStripMenuItem
//
this.pCSX2PhotoBatchFileToolStripMenuItem.Name = "pCSX2PhotoBatchFileToolStripMenuItem";
this.pCSX2PhotoBatchFileToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.pCSX2PhotoBatchFileToolStripMenuItem.Text = "PCSX2 Photo Batch file";
this.pCSX2PhotoBatchFileToolStripMenuItem.Click += new System.EventHandler(this.pCSX2PhotoBatchFileToolStripMenuItem_Click);
//
// mTextBox
//
this.mTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.mTextBox.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.mTextBox.Location = new System.Drawing.Point(2, 27);
this.mTextBox.Name = "mTextBox";
this.mTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth;
this.mTextBox.SearchString = null;
this.mTextBox.Size = new System.Drawing.Size(674, 327);
this.mTextBox.StatusControl = null;
this.mTextBox.TabIndex = 0;
this.mTextBox.Text = "";
this.mTextBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TextBox_MouseDown);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(678, 411);
this.Controls.Add(this.mLoadTextFileButton);
this.Controls.Add(this.mSaveButton);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.statusBar1);
this.Controls.Add(this.mClearButton);
this.Controls.Add(this.mTextBox);
this.Controls.Add(this.mListContentsButton);
this.Controls.Add(this.mLoadSaveButton);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.MinimumSize = new System.Drawing.Size(694, 200);
this.Name = "MainForm";
this.Text = "NFL2K5 Tool";
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button mLoadSaveButton;
private System.Windows.Forms.Button mListContentsButton;
private SearchTextBox mTextBox;
private System.Windows.Forms.Button mClearButton;
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.Label statusBar1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem findToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem loadSaveToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem debugDialogMenuItem;
private System.Windows.Forms.ToolStripMenuItem listApperanceToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem listAttributesToolStripMenuItem;
private System.Windows.Forms.Button mListPlayersButton2;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ToolStripMenuItem listFreeAgentsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem listDraftClassToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem listTeamsToolStripMenuItem;
private System.Windows.Forms.Button mSaveButton;
private System.Windows.Forms.ToolStripMenuItem autoUpdateDepthChartToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem applyDataWithoutSavingToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem autoUpdatePhotoToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem autoUpdatePBPToolStripMenuItem;
private System.Windows.Forms.Button mLoadTextFileButton;
private System.Windows.Forms.ToolStripMenuItem loadTextFileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem listScheduleToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem scheduleToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem teamPlayersToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem sortPlayersToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem editSortFormulasToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem uIToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem increaseFontSizeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem decreaseFontSizeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem nameColorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem autoCorrectScheduleToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem formatScheduleToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem autoUpdateSpecialTeamsDepthToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem listSpecialTeamsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem playerEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem coachOptionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem listCoachesToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem fullCoachAttributesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem globalEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutNFL2K5ToolToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem textCommandsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveTextToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem resetKeyToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem checkToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem checkFacesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem checkDreadsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutCheckOperationsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem checkSpecialTeamsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem validateToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem pCSX2PhotoYAMLToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem deleteTrailingCommasToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem pCSX2PhotoBatchFileToolStripMenuItem;
}
}