-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfrmMain.Designer.vb
More file actions
2855 lines (2853 loc) · 141 KB
/
frmMain.Designer.vb
File metadata and controls
2855 lines (2853 loc) · 141 KB
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
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> Partial Class frmMain
#Region "Windows フォーム デザイナによって生成されたコード "
<System.Diagnostics.DebuggerNonUserCode()> Public Sub New()
MyBase.New()
'この呼び出しは、Windows フォーム デザイナで必要です。
InitializeComponent()
stringFont = New Font(Font.FontFamily, Font.Size, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont)
End Sub
'Form は、コンポーネント一覧に後処理を実行するために dispose をオーバーライドします。
<System.Diagnostics.DebuggerNonUserCode()> Protected Overloads Overrides Sub Dispose(ByVal Disposing As Boolean)
stringFont.Dispose()
If Disposing Then
If Not components Is Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(Disposing)
End Sub
'Windows フォーム デザイナで必要です。
Private components As System.ComponentModel.IContainer
Public ToolTip1 As System.Windows.Forms.ToolTip
Public WithEvents mnuFileNew As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFileOpen As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFileSave As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFileSaveAs As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFileOpenDirectory As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineFile As System.Windows.Forms.ToolStripSeparator
Public WithEvents _mnuRecentFiles_0 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_1 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_2 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_3 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_4 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_5 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_6 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_7 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_8 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuRecentFiles_9 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineRecent As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuFileConvertWizard As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineExit As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuFileExit As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFile As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEditUndo As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEditRedo As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineEdit1 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuEditCut As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEditCopy As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEditPaste As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEditDelete As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineEdit2 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuEditSelectAll As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineEdit3 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuEditFind As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineEdit4 As System.Windows.Forms.ToolStripSeparator
Public WithEvents _mnuEditMode_0 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuEditMode_1 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuEditMode_2 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEdit As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuViewItem_0 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuViewItem_1 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuViewItem_2 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuView As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_0 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_1 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_2 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_3 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_4 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_5 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_6 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuOptionsItem_7 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineOptions As System.Windows.Forms.ToolStripSeparator
Public WithEvents _mnuLanguage_0 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuLanguage_1 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuLanguage_2 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLanguageParent As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuTheme_0 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuTheme_1 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents _mnuTheme_2 As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuThemeParent As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuOptions As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuToolsPlayAll As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuToolsPlay As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuToolsPlayStop As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineTools As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuToolsSetting As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuTools As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuHelpOpen As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLineHelp As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuHelpWeb As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuHelpAbout As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuHelp As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextPlayAll As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextPlay As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextBar1 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuContextInsertMeasure As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextDeleteMeasure As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextBar2 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuContextEditCut As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextEditCopy As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextEditPaste As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextEditDelete As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContext As System.Windows.Forms.ContextMenuStrip
Public WithEvents mnuContextListLoad As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextListDelete As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextListRename As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuContextList As System.Windows.Forms.ContextMenuStrip
Public WithEvents MainMenu1 As System.Windows.Forms.MenuStrip
Public WithEvents Mode As System.Windows.Forms.ToolStripStatusLabel
Public WithEvents Position As System.Windows.Forms.ToolStripStatusLabel
Public WithEvents WAV As System.Windows.Forms.ToolStripStatusLabel
Public WithEvents BMP As System.Windows.Forms.ToolStripStatusLabel
Public WithEvents Measure As System.Windows.Forms.ToolStripStatusLabel
Public WithEvents _staMain_Panel6 As System.Windows.Forms.ToolStripStatusLabel
Public WithEvents staMain As System.Windows.Forms.StatusStrip
Public WithEvents picSiromaru As System.Windows.Forms.PictureBox
Public WithEvents tmrEffect As System.Windows.Forms.Timer
Public WithEvents cboVScroll As System.Windows.Forms.ComboBox
Public WithEvents lblVScroll As System.Windows.Forms.Label
Public WithEvents fraResolution As System.Windows.Forms.Panel
Public WithEvents cboDispHeight As System.Windows.Forms.ComboBox
Public WithEvents cboDispWidth As System.Windows.Forms.ComboBox
Public WithEvents lblDispWidth As System.Windows.Forms.Label
Public WithEvents lblDispHeight As System.Windows.Forms.Label
Public WithEvents fraDispSize As System.Windows.Forms.Panel
Public WithEvents cboViewer As System.Windows.Forms.ComboBox
Public WithEvents fraViewer As System.Windows.Forms.Panel
Public WithEvents tmrMain As System.Windows.Forms.Timer
Public WithEvents ilsMenu As System.Windows.Forms.ImageList
Public WithEvents cboDirectInput As System.Windows.Forms.ComboBox
Public WithEvents cmdDirectInput As System.Windows.Forms.Button
Public WithEvents cboDispGridMain As System.Windows.Forms.ComboBox
Public WithEvents cboDispGridSub As System.Windows.Forms.ComboBox
Public WithEvents lblGridSub As System.Windows.Forms.Label
Public WithEvents lblGridMain As System.Windows.Forms.Label
Public WithEvents fraGrid As System.Windows.Forms.Panel
Public WithEvents cboPlayer As System.Windows.Forms.ComboBox
Public WithEvents txtGenre As System.Windows.Forms.TextBox
Public WithEvents txtTitle As System.Windows.Forms.TextBox
Public WithEvents txtArtist As System.Windows.Forms.TextBox
Public WithEvents cboPlayLevel As System.Windows.Forms.ComboBox
Public WithEvents txtBPM As System.Windows.Forms.TextBox
Public WithEvents lblPlayMode As System.Windows.Forms.Label
Public WithEvents lblGenre As System.Windows.Forms.Label
Public WithEvents lblTitle As System.Windows.Forms.Label
Public WithEvents lblArtist As System.Windows.Forms.Label
Public WithEvents lblPlayLevel As System.Windows.Forms.Label
Public WithEvents lblBPM As System.Windows.Forms.Label
Public WithEvents _fraTop_0 As System.Windows.Forms.Panel
Public WithEvents cboPlayRank As System.Windows.Forms.ComboBox
Public WithEvents txtTotal As System.Windows.Forms.TextBox
Public WithEvents txtVolume As System.Windows.Forms.TextBox
Public WithEvents txtStageFile As System.Windows.Forms.TextBox
Public WithEvents cmdLoadStageFile As System.Windows.Forms.Button
Public WithEvents cmdLoadMissBMP As System.Windows.Forms.Button
Public WithEvents txtMissBMP As System.Windows.Forms.TextBox
Public WithEvents lblPlayRank As System.Windows.Forms.Label
Public WithEvents lblTotal As System.Windows.Forms.Label
Public WithEvents lblVolume As System.Windows.Forms.Label
Public WithEvents lblStageFile As System.Windows.Forms.Label
Public WithEvents lblMissBMP As System.Windows.Forms.Label
Public WithEvents _fraTop_1 As System.Windows.Forms.Panel
Public WithEvents cboDispFrame As System.Windows.Forms.ComboBox
Public WithEvents cboDispSC2P As System.Windows.Forms.ComboBox
Public WithEvents cboDispSC1P As System.Windows.Forms.ComboBox
Public WithEvents cboDispKey As System.Windows.Forms.ComboBox
Public WithEvents lblDispFrame As System.Windows.Forms.Label
Public WithEvents lblDispSC2P As System.Windows.Forms.Label
Public WithEvents lblDispSC1P As System.Windows.Forms.Label
Public WithEvents lblDispKey As System.Windows.Forms.Label
Public WithEvents _fraTop_2 As System.Windows.Forms.Panel
Public WithEvents _optChangeTop_0 As System.Windows.Forms.RadioButton
Public WithEvents _optChangeTop_2 As System.Windows.Forms.RadioButton
Public WithEvents _optChangeTop_1 As System.Windows.Forms.RadioButton
Public WithEvents fraHeader As System.Windows.Forms.Panel
Public WithEvents _optChangeBottom_0 As System.Windows.Forms.RadioButton
Public WithEvents _optChangeBottom_1 As System.Windows.Forms.RadioButton
Public WithEvents _optChangeBottom_2 As System.Windows.Forms.RadioButton
Public WithEvents _optChangeBottom_3 As System.Windows.Forms.RadioButton
Public WithEvents _optChangeBottom_4 As System.Windows.Forms.RadioButton
Public WithEvents txtExInfo As System.Windows.Forms.TextBox
Public WithEvents _fraBottom_4 As System.Windows.Forms.Panel
Public WithEvents cmdSoundExcUp As System.Windows.Forms.Button
Public WithEvents cmdSoundExcDown As System.Windows.Forms.Button
Public WithEvents cmdSoundDelete As System.Windows.Forms.Button
Public WithEvents cmdSoundLoad As System.Windows.Forms.Button
Public WithEvents cmdSoundStop As System.Windows.Forms.Button
Public WithEvents lstWAV As System.Windows.Forms.ListBox
Public WithEvents _fraBottom_0 As System.Windows.Forms.Panel
Public WithEvents cmdBMPExcDown As System.Windows.Forms.Button
Public WithEvents cmdBMPExcUp As System.Windows.Forms.Button
Public WithEvents lstBMP As System.Windows.Forms.ListBox
Public WithEvents cmdBMPDelete As System.Windows.Forms.Button
Public WithEvents cmdBMPLoad As System.Windows.Forms.Button
Public WithEvents cmdBMPPreview As System.Windows.Forms.Button
Public WithEvents _fraBottom_1 As System.Windows.Forms.Panel
Public WithEvents cmdBGAExcDown As System.Windows.Forms.Button
Public WithEvents cmdBGAExcUp As System.Windows.Forms.Button
Public WithEvents txtBGAInput As System.Windows.Forms.TextBox
Public WithEvents cmdBGAPreview As System.Windows.Forms.Button
Public WithEvents cmdBGASet As System.Windows.Forms.Button
Public WithEvents cmdBGADelete As System.Windows.Forms.Button
Public WithEvents lstBGA As System.Windows.Forms.ListBox
Public WithEvents _fraBottom_2 As System.Windows.Forms.Panel
Public WithEvents cboNumerator As System.Windows.Forms.ComboBox
Public WithEvents cboDenominator As System.Windows.Forms.ComboBox
Public WithEvents cmdMeasureSelectAll As System.Windows.Forms.Button
Public WithEvents cmdInputMeasureLen As System.Windows.Forms.Button
Public WithEvents lstMeasureLen As System.Windows.Forms.ListBox
Public WithEvents lblFraction As System.Windows.Forms.Label
Public WithEvents _fraBottom_3 As System.Windows.Forms.Panel
Public WithEvents fraMaterial As System.Windows.Forms.Panel
Public WithEvents picMain As System.Windows.Forms.PictureBox
Public WithEvents hsbMain As System.Windows.Forms.HScrollBar
Public WithEvents vsbMain As System.Windows.Forms.VScrollBar
Public dlgMainOpen As System.Windows.Forms.OpenFileDialog
Public dlgMainSave As System.Windows.Forms.SaveFileDialog
Public WithEvents _New As System.Windows.Forms.ToolStripButton
Public WithEvents Open As System.Windows.Forms.ToolStripDropDownButton
Public WithEvents Reload As System.Windows.Forms.ToolStripButton
Public WithEvents Save As System.Windows.Forms.ToolStripButton
Public WithEvents SaveAs As System.Windows.Forms.ToolStripButton
Public WithEvents SepMode As System.Windows.Forms.ToolStripSeparator
Public WithEvents Edit As System.Windows.Forms.ToolStripButton
Public WithEvents Write As System.Windows.Forms.ToolStripButton
Public WithEvents Delete As System.Windows.Forms.ToolStripButton
Public WithEvents SepViewer As System.Windows.Forms.ToolStripSeparator
Public WithEvents Viewer As System.Windows.Forms.ToolStripSeparator
Public WithEvents PlayAll As System.Windows.Forms.ToolStripButton
Public WithEvents Play As System.Windows.Forms.ToolStripButton
Public WithEvents _Stop As System.Windows.Forms.ToolStripButton
Public WithEvents SepGrid As System.Windows.Forms.ToolStripSeparator
Public WithEvents ChangeGrid As System.Windows.Forms.ToolStripSeparator
Public WithEvents SepSize As System.Windows.Forms.ToolStripSeparator
Public WithEvents DispSize As System.Windows.Forms.ToolStripSeparator
Public WithEvents SepResolution As System.Windows.Forms.ToolStripSeparator
Public WithEvents Resolution As System.Windows.Forms.ToolStripSeparator
Public WithEvents tlbMenu As System.Windows.Forms.ToolStrip
Public WithEvents lblDirectInput As System.Windows.Forms.Label
'メモ: 以下のプロシージャは Windows フォーム デザイナで必要です。
'Windows フォーム デザイナを使って変更できます。
'コード エディタを使用して、変更しないでください。
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmMain))
Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
Me.MainMenu1 = New System.Windows.Forms.MenuStrip()
Me.mnuFile = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFileNew = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFileOpen = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFileSave = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFileSaveAs = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFileOpenDirectory = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineFile = New System.Windows.Forms.ToolStripSeparator()
Me._mnuRecentFiles_0 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_1 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_2 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_3 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_4 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_5 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_6 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_7 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_8 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuRecentFiles_9 = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineRecent = New System.Windows.Forms.ToolStripSeparator()
Me.mnuFileConvertWizard = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineExit = New System.Windows.Forms.ToolStripSeparator()
Me.mnuFileExit = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEdit = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEditUndo = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEditRedo = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineEdit1 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuEditCut = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEditCopy = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEditPaste = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEditDelete = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineEdit2 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuEditSelectAll = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineEdit3 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuEditFind = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineEdit4 = New System.Windows.Forms.ToolStripSeparator()
Me._mnuEditMode_0 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuEditMode_1 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuEditMode_2 = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuView = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuViewItem_0 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuViewItem_1 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuViewItem_2 = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuOptions = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_0 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_1 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_2 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_3 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_4 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_5 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_6 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuOptionsItem_7 = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineOptions = New System.Windows.Forms.ToolStripSeparator()
Me.mnuLanguageParent = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuLanguage_0 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuLanguage_1 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuLanguage_2 = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuThemeParent = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuTheme_0 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuTheme_1 = New System.Windows.Forms.ToolStripMenuItem()
Me._mnuTheme_2 = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuTools = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuToolsPlayAll = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuToolsPlay = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuToolsPlayStop = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineTools = New System.Windows.Forms.ToolStripSeparator()
Me.mnuToolsSetting = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuHelp = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuHelpOpen = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLineHelp = New System.Windows.Forms.ToolStripSeparator()
Me.mnuHelpWeb = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuHelpAbout = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContext = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.mnuContextPlayAll = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextPlay = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextBar1 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuContextInsertMeasure = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextDeleteMeasure = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextBar2 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuContextEditCut = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextEditCopy = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextEditPaste = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextEditDelete = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextList = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.mnuContextListLoad = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextListDelete = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuContextListRename = New System.Windows.Forms.ToolStripMenuItem()
Me.staMain = New System.Windows.Forms.StatusStrip()
Me.Mode = New System.Windows.Forms.ToolStripStatusLabel()
Me.Position = New System.Windows.Forms.ToolStripStatusLabel()
Me.WAV = New System.Windows.Forms.ToolStripStatusLabel()
Me.BMP = New System.Windows.Forms.ToolStripStatusLabel()
Me.Measure = New System.Windows.Forms.ToolStripStatusLabel()
Me._staMain_Panel6 = New System.Windows.Forms.ToolStripStatusLabel()
Me.picSiromaru = New System.Windows.Forms.PictureBox()
Me.tmrEffect = New System.Windows.Forms.Timer(Me.components)
Me.fraResolution = New System.Windows.Forms.Panel()
Me.cboVScroll = New System.Windows.Forms.ComboBox()
Me.lblVScroll = New System.Windows.Forms.Label()
Me.fraDispSize = New System.Windows.Forms.Panel()
Me.cboDispHeight = New System.Windows.Forms.ComboBox()
Me.cboDispWidth = New System.Windows.Forms.ComboBox()
Me.lblDispWidth = New System.Windows.Forms.Label()
Me.lblDispHeight = New System.Windows.Forms.Label()
Me.fraViewer = New System.Windows.Forms.Panel()
Me.cboViewer = New System.Windows.Forms.ComboBox()
Me.tmrMain = New System.Windows.Forms.Timer(Me.components)
Me.ilsMenu = New System.Windows.Forms.ImageList(Me.components)
Me.cboDirectInput = New System.Windows.Forms.ComboBox()
Me.cmdDirectInput = New System.Windows.Forms.Button()
Me.fraGrid = New System.Windows.Forms.Panel()
Me.cboDispGridMain = New System.Windows.Forms.ComboBox()
Me.cboDispGridSub = New System.Windows.Forms.ComboBox()
Me.lblGridSub = New System.Windows.Forms.Label()
Me.lblGridMain = New System.Windows.Forms.Label()
Me.fraHeader = New System.Windows.Forms.Panel()
Me._optChangeTop_2 = New System.Windows.Forms.RadioButton()
Me._optChangeTop_1 = New System.Windows.Forms.RadioButton()
Me._optChangeTop_0 = New System.Windows.Forms.RadioButton()
Me._fraTop_0 = New System.Windows.Forms.Panel()
Me.cboPlayer = New System.Windows.Forms.ComboBox()
Me.txtGenre = New System.Windows.Forms.TextBox()
Me.txtTitle = New System.Windows.Forms.TextBox()
Me.txtArtist = New System.Windows.Forms.TextBox()
Me.cboPlayLevel = New System.Windows.Forms.ComboBox()
Me.txtBPM = New System.Windows.Forms.TextBox()
Me.lblPlayMode = New System.Windows.Forms.Label()
Me.lblGenre = New System.Windows.Forms.Label()
Me.lblTitle = New System.Windows.Forms.Label()
Me.lblArtist = New System.Windows.Forms.Label()
Me.lblPlayLevel = New System.Windows.Forms.Label()
Me.lblBPM = New System.Windows.Forms.Label()
Me._fraTop_1 = New System.Windows.Forms.Panel()
Me.cboPlayRank = New System.Windows.Forms.ComboBox()
Me.txtTotal = New System.Windows.Forms.TextBox()
Me.txtVolume = New System.Windows.Forms.TextBox()
Me.txtStageFile = New System.Windows.Forms.TextBox()
Me.cmdLoadStageFile = New System.Windows.Forms.Button()
Me.cmdLoadMissBMP = New System.Windows.Forms.Button()
Me.txtMissBMP = New System.Windows.Forms.TextBox()
Me.lblPlayRank = New System.Windows.Forms.Label()
Me.lblTotal = New System.Windows.Forms.Label()
Me.lblVolume = New System.Windows.Forms.Label()
Me.lblStageFile = New System.Windows.Forms.Label()
Me.lblMissBMP = New System.Windows.Forms.Label()
Me._fraTop_2 = New System.Windows.Forms.Panel()
Me.cboDispFrame = New System.Windows.Forms.ComboBox()
Me.cboDispSC2P = New System.Windows.Forms.ComboBox()
Me.cboDispSC1P = New System.Windows.Forms.ComboBox()
Me.cboDispKey = New System.Windows.Forms.ComboBox()
Me.lblDispFrame = New System.Windows.Forms.Label()
Me.lblDispSC2P = New System.Windows.Forms.Label()
Me.lblDispSC1P = New System.Windows.Forms.Label()
Me.lblDispKey = New System.Windows.Forms.Label()
Me.fraMaterial = New System.Windows.Forms.Panel()
Me._optChangeBottom_0 = New System.Windows.Forms.RadioButton()
Me._optChangeBottom_1 = New System.Windows.Forms.RadioButton()
Me._optChangeBottom_2 = New System.Windows.Forms.RadioButton()
Me._optChangeBottom_3 = New System.Windows.Forms.RadioButton()
Me._optChangeBottom_4 = New System.Windows.Forms.RadioButton()
Me._fraBottom_4 = New System.Windows.Forms.Panel()
Me.txtExInfo = New System.Windows.Forms.TextBox()
Me._fraBottom_0 = New System.Windows.Forms.Panel()
Me.cmdSoundExcUp = New System.Windows.Forms.Button()
Me.cmdSoundExcDown = New System.Windows.Forms.Button()
Me.cmdSoundDelete = New System.Windows.Forms.Button()
Me.cmdSoundLoad = New System.Windows.Forms.Button()
Me.cmdSoundStop = New System.Windows.Forms.Button()
Me.lstWAV = New System.Windows.Forms.ListBox()
Me._fraBottom_1 = New System.Windows.Forms.Panel()
Me.cmdBMPExcDown = New System.Windows.Forms.Button()
Me.cmdBMPExcUp = New System.Windows.Forms.Button()
Me.lstBMP = New System.Windows.Forms.ListBox()
Me.cmdBMPDelete = New System.Windows.Forms.Button()
Me.cmdBMPLoad = New System.Windows.Forms.Button()
Me.cmdBMPPreview = New System.Windows.Forms.Button()
Me._fraBottom_2 = New System.Windows.Forms.Panel()
Me.cmdBGAExcDown = New System.Windows.Forms.Button()
Me.cmdBGAExcUp = New System.Windows.Forms.Button()
Me.txtBGAInput = New System.Windows.Forms.TextBox()
Me.cmdBGAPreview = New System.Windows.Forms.Button()
Me.cmdBGASet = New System.Windows.Forms.Button()
Me.cmdBGADelete = New System.Windows.Forms.Button()
Me.lstBGA = New System.Windows.Forms.ListBox()
Me._fraBottom_3 = New System.Windows.Forms.Panel()
Me.cboNumerator = New System.Windows.Forms.ComboBox()
Me.cboDenominator = New System.Windows.Forms.ComboBox()
Me.cmdMeasureSelectAll = New System.Windows.Forms.Button()
Me.cmdInputMeasureLen = New System.Windows.Forms.Button()
Me.lstMeasureLen = New System.Windows.Forms.ListBox()
Me.lblFraction = New System.Windows.Forms.Label()
Me.picMain = New System.Windows.Forms.PictureBox()
Me.hsbMain = New System.Windows.Forms.HScrollBar()
Me.vsbMain = New System.Windows.Forms.VScrollBar()
Me.dlgMainOpen = New System.Windows.Forms.OpenFileDialog()
Me.dlgMainSave = New System.Windows.Forms.SaveFileDialog()
Me.tlbMenu = New System.Windows.Forms.ToolStrip()
Me._New = New System.Windows.Forms.ToolStripButton()
Me.Open = New System.Windows.Forms.ToolStripDropDownButton()
Me.ToolStripMenuItem0 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem1 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem2 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem3 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem4 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem5 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem6 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem7 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem8 = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem9 = New System.Windows.Forms.ToolStripMenuItem()
Me.Reload = New System.Windows.Forms.ToolStripButton()
Me.Save = New System.Windows.Forms.ToolStripButton()
Me.SaveAs = New System.Windows.Forms.ToolStripButton()
Me.SepMode = New System.Windows.Forms.ToolStripSeparator()
Me.Edit = New System.Windows.Forms.ToolStripButton()
Me.Write = New System.Windows.Forms.ToolStripButton()
Me.Delete = New System.Windows.Forms.ToolStripButton()
Me.SepViewer = New System.Windows.Forms.ToolStripSeparator()
Me.Viewer = New System.Windows.Forms.ToolStripSeparator()
Me.PlayAll = New System.Windows.Forms.ToolStripButton()
Me.Play = New System.Windows.Forms.ToolStripButton()
Me._Stop = New System.Windows.Forms.ToolStripButton()
Me.SepGrid = New System.Windows.Forms.ToolStripSeparator()
Me.ChangeGrid = New System.Windows.Forms.ToolStripSeparator()
Me.SepSize = New System.Windows.Forms.ToolStripSeparator()
Me.DispSize = New System.Windows.Forms.ToolStripSeparator()
Me.SepResolution = New System.Windows.Forms.ToolStripSeparator()
Me.Resolution = New System.Windows.Forms.ToolStripSeparator()
Me.lblDirectInput = New System.Windows.Forms.Label()
Me.MainMenu1.SuspendLayout()
Me.mnuContext.SuspendLayout()
Me.mnuContextList.SuspendLayout()
Me.staMain.SuspendLayout()
CType(Me.picSiromaru, System.ComponentModel.ISupportInitialize).BeginInit()
Me.fraResolution.SuspendLayout()
Me.fraDispSize.SuspendLayout()
Me.fraViewer.SuspendLayout()
Me.fraGrid.SuspendLayout()
Me.fraHeader.SuspendLayout()
Me._fraTop_0.SuspendLayout()
Me._fraTop_1.SuspendLayout()
Me._fraTop_2.SuspendLayout()
Me.fraMaterial.SuspendLayout()
Me._fraBottom_4.SuspendLayout()
Me._fraBottom_0.SuspendLayout()
Me._fraBottom_1.SuspendLayout()
Me._fraBottom_2.SuspendLayout()
Me._fraBottom_3.SuspendLayout()
CType(Me.picMain, System.ComponentModel.ISupportInitialize).BeginInit()
Me.tlbMenu.SuspendLayout()
Me.SuspendLayout()
'
'MainMenu1
'
Me.MainMenu1.ImageScalingSize = New System.Drawing.Size(24, 24)
Me.MainMenu1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuFile, Me.mnuEdit, Me.mnuView, Me.mnuOptions, Me.mnuTools, Me.mnuHelp})
Me.MainMenu1.Location = New System.Drawing.Point(0, 0)
Me.MainMenu1.Name = "MainMenu1"
Me.MainMenu1.Size = New System.Drawing.Size(1192, 24)
Me.MainMenu1.TabIndex = 101
'
'mnuFile
'
Me.mnuFile.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuFileNew, Me.mnuFileOpen, Me.mnuFileSave, Me.mnuFileSaveAs, Me.mnuFileOpenDirectory, Me.mnuLineFile, Me._mnuRecentFiles_0, Me._mnuRecentFiles_1, Me._mnuRecentFiles_2, Me._mnuRecentFiles_3, Me._mnuRecentFiles_4, Me._mnuRecentFiles_5, Me._mnuRecentFiles_6, Me._mnuRecentFiles_7, Me._mnuRecentFiles_8, Me._mnuRecentFiles_9, Me.mnuLineRecent, Me.mnuFileConvertWizard, Me.mnuLineExit, Me.mnuFileExit})
Me.mnuFile.Name = "mnuFile"
Me.mnuFile.Size = New System.Drawing.Size(61, 20)
Me.mnuFile.Text = "mnuFile"
'
'mnuFileNew
'
Me.mnuFileNew.Name = "mnuFileNew"
Me.mnuFileNew.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.N), System.Windows.Forms.Keys)
Me.mnuFileNew.Size = New System.Drawing.Size(234, 22)
Me.mnuFileNew.Text = "mnuFileNew"
'
'mnuFileOpen
'
Me.mnuFileOpen.Name = "mnuFileOpen"
Me.mnuFileOpen.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.O), System.Windows.Forms.Keys)
Me.mnuFileOpen.Size = New System.Drawing.Size(234, 22)
Me.mnuFileOpen.Text = "mnuFileOpen"
'
'mnuFileSave
'
Me.mnuFileSave.Name = "mnuFileSave"
Me.mnuFileSave.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.S), System.Windows.Forms.Keys)
Me.mnuFileSave.Size = New System.Drawing.Size(234, 22)
Me.mnuFileSave.Text = "mnuFileSave"
'
'mnuFileSaveAs
'
Me.mnuFileSaveAs.Name = "mnuFileSaveAs"
Me.mnuFileSaveAs.Size = New System.Drawing.Size(234, 22)
Me.mnuFileSaveAs.Text = "mnuFileSaveAs"
'
'mnuFileOpenDirectory
'
Me.mnuFileOpenDirectory.Name = "mnuFileOpenDirectory"
Me.mnuFileOpenDirectory.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.D), System.Windows.Forms.Keys)
Me.mnuFileOpenDirectory.Size = New System.Drawing.Size(234, 22)
Me.mnuFileOpenDirectory.Text = "mnuFileOpenDirectory"
'
'mnuLineFile
'
Me.mnuLineFile.Name = "mnuLineFile"
Me.mnuLineFile.Size = New System.Drawing.Size(231, 6)
'
'_mnuRecentFiles_0
'
Me._mnuRecentFiles_0.Name = "_mnuRecentFiles_0"
Me._mnuRecentFiles_0.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_0.Text = "&1:"
'
'_mnuRecentFiles_1
'
Me._mnuRecentFiles_1.Name = "_mnuRecentFiles_1"
Me._mnuRecentFiles_1.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_1.Text = "&2:"
'
'_mnuRecentFiles_2
'
Me._mnuRecentFiles_2.Name = "_mnuRecentFiles_2"
Me._mnuRecentFiles_2.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_2.Text = "&3:"
'
'_mnuRecentFiles_3
'
Me._mnuRecentFiles_3.Name = "_mnuRecentFiles_3"
Me._mnuRecentFiles_3.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_3.Text = "&4:"
'
'_mnuRecentFiles_4
'
Me._mnuRecentFiles_4.Name = "_mnuRecentFiles_4"
Me._mnuRecentFiles_4.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_4.Text = "&5:"
'
'_mnuRecentFiles_5
'
Me._mnuRecentFiles_5.Name = "_mnuRecentFiles_5"
Me._mnuRecentFiles_5.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_5.Text = "&6:"
Me._mnuRecentFiles_5.Visible = False
'
'_mnuRecentFiles_6
'
Me._mnuRecentFiles_6.Name = "_mnuRecentFiles_6"
Me._mnuRecentFiles_6.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_6.Text = "&7:"
Me._mnuRecentFiles_6.Visible = False
'
'_mnuRecentFiles_7
'
Me._mnuRecentFiles_7.Name = "_mnuRecentFiles_7"
Me._mnuRecentFiles_7.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_7.Text = "&8:"
Me._mnuRecentFiles_7.Visible = False
'
'_mnuRecentFiles_8
'
Me._mnuRecentFiles_8.Name = "_mnuRecentFiles_8"
Me._mnuRecentFiles_8.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_8.Text = "&9:"
Me._mnuRecentFiles_8.Visible = False
'
'_mnuRecentFiles_9
'
Me._mnuRecentFiles_9.Name = "_mnuRecentFiles_9"
Me._mnuRecentFiles_9.Size = New System.Drawing.Size(234, 22)
Me._mnuRecentFiles_9.Text = "&0:"
Me._mnuRecentFiles_9.Visible = False
'
'mnuLineRecent
'
Me.mnuLineRecent.Name = "mnuLineRecent"
Me.mnuLineRecent.Size = New System.Drawing.Size(231, 6)
'
'mnuFileConvertWizard
'
Me.mnuFileConvertWizard.Name = "mnuFileConvertWizard"
Me.mnuFileConvertWizard.Size = New System.Drawing.Size(234, 22)
Me.mnuFileConvertWizard.Text = "mnuFileConvertWizard"
'
'mnuLineExit
'
Me.mnuLineExit.Name = "mnuLineExit"
Me.mnuLineExit.Size = New System.Drawing.Size(231, 6)
'
'mnuFileExit
'
Me.mnuFileExit.Name = "mnuFileExit"
Me.mnuFileExit.Size = New System.Drawing.Size(234, 22)
Me.mnuFileExit.Text = "mnuFileExit"
'
'mnuEdit
'
Me.mnuEdit.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuEditUndo, Me.mnuEditRedo, Me.mnuLineEdit1, Me.mnuEditCut, Me.mnuEditCopy, Me.mnuEditPaste, Me.mnuEditDelete, Me.mnuLineEdit2, Me.mnuEditSelectAll, Me.mnuLineEdit3, Me.mnuEditFind, Me.mnuLineEdit4, Me._mnuEditMode_0, Me._mnuEditMode_1, Me._mnuEditMode_2})
Me.mnuEdit.Name = "mnuEdit"
Me.mnuEdit.Size = New System.Drawing.Size(63, 20)
Me.mnuEdit.Text = "mnuEdit"
'
'mnuEditUndo
'
Me.mnuEditUndo.Name = "mnuEditUndo"
Me.mnuEditUndo.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.Z), System.Windows.Forms.Keys)
Me.mnuEditUndo.Size = New System.Drawing.Size(204, 22)
Me.mnuEditUndo.Text = "mnuEditUndo"
'
'mnuEditRedo
'
Me.mnuEditRedo.Name = "mnuEditRedo"
Me.mnuEditRedo.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.Y), System.Windows.Forms.Keys)
Me.mnuEditRedo.Size = New System.Drawing.Size(204, 22)
Me.mnuEditRedo.Text = "mnuEditRedo"
'
'mnuLineEdit1
'
Me.mnuLineEdit1.Name = "mnuLineEdit1"
Me.mnuLineEdit1.Size = New System.Drawing.Size(201, 6)
'
'mnuEditCut
'
Me.mnuEditCut.Name = "mnuEditCut"
Me.mnuEditCut.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.X), System.Windows.Forms.Keys)
Me.mnuEditCut.Size = New System.Drawing.Size(204, 22)
Me.mnuEditCut.Text = "mnuEditCut"
'
'mnuEditCopy
'
Me.mnuEditCopy.Name = "mnuEditCopy"
Me.mnuEditCopy.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.C), System.Windows.Forms.Keys)
Me.mnuEditCopy.Size = New System.Drawing.Size(204, 22)
Me.mnuEditCopy.Text = "mnuEditCopy"
'
'mnuEditPaste
'
Me.mnuEditPaste.Name = "mnuEditPaste"
Me.mnuEditPaste.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.V), System.Windows.Forms.Keys)
Me.mnuEditPaste.Size = New System.Drawing.Size(204, 22)
Me.mnuEditPaste.Text = "mnuEditPaste"
'
'mnuEditDelete
'
Me.mnuEditDelete.Name = "mnuEditDelete"
Me.mnuEditDelete.ShortcutKeys = System.Windows.Forms.Keys.Delete
Me.mnuEditDelete.Size = New System.Drawing.Size(204, 22)
Me.mnuEditDelete.Text = "mnuEditDelete"
'
'mnuLineEdit2
'
Me.mnuLineEdit2.Name = "mnuLineEdit2"
Me.mnuLineEdit2.Size = New System.Drawing.Size(201, 6)
'
'mnuEditSelectAll
'
Me.mnuEditSelectAll.Name = "mnuEditSelectAll"
Me.mnuEditSelectAll.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.A), System.Windows.Forms.Keys)
Me.mnuEditSelectAll.Size = New System.Drawing.Size(204, 22)
Me.mnuEditSelectAll.Text = "mnuEditSelectAll"
'
'mnuLineEdit3
'
Me.mnuLineEdit3.Name = "mnuLineEdit3"
Me.mnuLineEdit3.Size = New System.Drawing.Size(201, 6)
'
'mnuEditFind
'
Me.mnuEditFind.Name = "mnuEditFind"
Me.mnuEditFind.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.F), System.Windows.Forms.Keys)
Me.mnuEditFind.Size = New System.Drawing.Size(204, 22)
Me.mnuEditFind.Text = "mnuEditFind"
'
'mnuLineEdit4
'
Me.mnuLineEdit4.Name = "mnuLineEdit4"
Me.mnuLineEdit4.Size = New System.Drawing.Size(201, 6)
'
'_mnuEditMode_0
'
Me._mnuEditMode_0.Name = "_mnuEditMode_0"
Me._mnuEditMode_0.ShortcutKeys = System.Windows.Forms.Keys.F2
Me._mnuEditMode_0.Size = New System.Drawing.Size(204, 22)
Me._mnuEditMode_0.Text = "mnuEditMode(0)"
'
'_mnuEditMode_1
'
Me._mnuEditMode_1.Name = "_mnuEditMode_1"
Me._mnuEditMode_1.ShortcutKeys = System.Windows.Forms.Keys.F3
Me._mnuEditMode_1.Size = New System.Drawing.Size(204, 22)
Me._mnuEditMode_1.Text = "mnuEditMode(1)"
'
'_mnuEditMode_2
'
Me._mnuEditMode_2.Name = "_mnuEditMode_2"
Me._mnuEditMode_2.ShortcutKeys = System.Windows.Forms.Keys.F4
Me._mnuEditMode_2.Size = New System.Drawing.Size(204, 22)
Me._mnuEditMode_2.Text = "mnuEditMode(2)"
'
'mnuView
'
Me.mnuView.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me._mnuViewItem_0, Me._mnuViewItem_1, Me._mnuViewItem_2})
Me.mnuView.Name = "mnuView"
Me.mnuView.Size = New System.Drawing.Size(68, 20)
Me.mnuView.Text = "mnuView"
'
'_mnuViewItem_0
'
Me._mnuViewItem_0.Name = "_mnuViewItem_0"
Me._mnuViewItem_0.Size = New System.Drawing.Size(160, 22)
Me._mnuViewItem_0.Text = "mnuViewItem(0)"
'
'_mnuViewItem_1
'
Me._mnuViewItem_1.Name = "_mnuViewItem_1"
Me._mnuViewItem_1.Size = New System.Drawing.Size(160, 22)
Me._mnuViewItem_1.Text = "mnuViewItem(1)"
'
'_mnuViewItem_2
'
Me._mnuViewItem_2.Name = "_mnuViewItem_2"
Me._mnuViewItem_2.Size = New System.Drawing.Size(160, 22)
Me._mnuViewItem_2.Text = "mnuViewItem(2)"
'
'mnuOptions
'
Me.mnuOptions.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me._mnuOptionsItem_0, Me._mnuOptionsItem_1, Me._mnuOptionsItem_2, Me._mnuOptionsItem_3, Me._mnuOptionsItem_4, Me._mnuOptionsItem_5, Me._mnuOptionsItem_6, Me._mnuOptionsItem_7, Me.mnuLineOptions, Me.mnuLanguageParent, Me.mnuThemeParent})
Me.mnuOptions.Name = "mnuOptions"
Me.mnuOptions.Size = New System.Drawing.Size(85, 20)
Me.mnuOptions.Text = "mnuOptions"
'
'_mnuOptionsItem_0
'
Me._mnuOptionsItem_0.Checked = True
Me._mnuOptionsItem_0.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_0.Name = "_mnuOptionsItem_0"
Me._mnuOptionsItem_0.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_0.Text = "mnuOptionsItem(0)"
'
'_mnuOptionsItem_1
'
Me._mnuOptionsItem_1.Checked = True
Me._mnuOptionsItem_1.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_1.Name = "_mnuOptionsItem_1"
Me._mnuOptionsItem_1.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_1.Text = "mnuOptionsItem(1)"
'
'_mnuOptionsItem_2
'
Me._mnuOptionsItem_2.Checked = True
Me._mnuOptionsItem_2.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_2.Name = "_mnuOptionsItem_2"
Me._mnuOptionsItem_2.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_2.Text = "mnuOptionsItem(2)"
'
'_mnuOptionsItem_3
'
Me._mnuOptionsItem_3.Checked = True
Me._mnuOptionsItem_3.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_3.Name = "_mnuOptionsItem_3"
Me._mnuOptionsItem_3.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_3.Text = "mnuOptionsItem(3)"
'
'_mnuOptionsItem_4
'
Me._mnuOptionsItem_4.Checked = True
Me._mnuOptionsItem_4.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_4.Name = "_mnuOptionsItem_4"
Me._mnuOptionsItem_4.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_4.Text = "mnuOptionsItem(4)"
'
'_mnuOptionsItem_5
'
Me._mnuOptionsItem_5.Checked = True
Me._mnuOptionsItem_5.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_5.Name = "_mnuOptionsItem_5"
Me._mnuOptionsItem_5.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_5.Text = "mnuOptionsItem(5)"
'
'_mnuOptionsItem_6
'
Me._mnuOptionsItem_6.Checked = True
Me._mnuOptionsItem_6.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_6.Name = "_mnuOptionsItem_6"
Me._mnuOptionsItem_6.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_6.Text = "mnuOptionsItem(6)"
'
'_mnuOptionsItem_7
'
Me._mnuOptionsItem_7.Checked = True
Me._mnuOptionsItem_7.CheckState = System.Windows.Forms.CheckState.Checked
Me._mnuOptionsItem_7.Name = "_mnuOptionsItem_7"
Me._mnuOptionsItem_7.Size = New System.Drawing.Size(177, 22)
Me._mnuOptionsItem_7.Text = "mnuOptionsItem(7)"
'
'mnuLineOptions
'
Me.mnuLineOptions.Name = "mnuLineOptions"
Me.mnuLineOptions.Size = New System.Drawing.Size(174, 6)
'
'mnuLanguageParent
'
Me.mnuLanguageParent.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me._mnuLanguage_0, Me._mnuLanguage_1, Me._mnuLanguage_2})
Me.mnuLanguageParent.Name = "mnuLanguageParent"
Me.mnuLanguageParent.Size = New System.Drawing.Size(177, 22)
Me.mnuLanguageParent.Text = "Select &Language"
'
'_mnuLanguage_0
'
Me._mnuLanguage_0.Name = "_mnuLanguage_0"
Me._mnuLanguage_0.Size = New System.Drawing.Size(164, 22)
Me._mnuLanguage_0.Text = "mnuLanguage(0)"
'
'_mnuLanguage_1
'
Me._mnuLanguage_1.Name = "_mnuLanguage_1"
Me._mnuLanguage_1.Size = New System.Drawing.Size(164, 22)
Me._mnuLanguage_1.Text = "mnuLanguage(1)"
'
'_mnuLanguage_2
'
Me._mnuLanguage_2.Name = "_mnuLanguage_2"
Me._mnuLanguage_2.Size = New System.Drawing.Size(164, 22)
Me._mnuLanguage_2.Text = "mnuLanguage(2)"
'
'mnuThemeParent
'
Me.mnuThemeParent.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me._mnuTheme_0, Me._mnuTheme_1, Me._mnuTheme_2})
Me.mnuThemeParent.Name = "mnuThemeParent"
Me.mnuThemeParent.Size = New System.Drawing.Size(177, 22)
Me.mnuThemeParent.Text = "Select &Theme"
'
'_mnuTheme_0
'
Me._mnuTheme_0.Name = "_mnuTheme_0"
Me._mnuTheme_0.Size = New System.Drawing.Size(147, 22)
Me._mnuTheme_0.Text = "mnuTheme(0)"
'
'_mnuTheme_1
'
Me._mnuTheme_1.Name = "_mnuTheme_1"
Me._mnuTheme_1.Size = New System.Drawing.Size(147, 22)
Me._mnuTheme_1.Text = "mnuTheme(1)"
'
'_mnuTheme_2
'
Me._mnuTheme_2.Name = "_mnuTheme_2"
Me._mnuTheme_2.Size = New System.Drawing.Size(147, 22)
Me._mnuTheme_2.Text = "mnuTheme(2)"
'
'mnuTools
'
Me.mnuTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuToolsPlayAll, Me.mnuToolsPlay, Me.mnuToolsPlayStop, Me.mnuLineTools, Me.mnuToolsSetting})
Me.mnuTools.Name = "mnuTools"
Me.mnuTools.Size = New System.Drawing.Size(70, 20)
Me.mnuTools.Text = "mnuTools"
'
'mnuToolsPlayAll
'
Me.mnuToolsPlayAll.Name = "mnuToolsPlayAll"
Me.mnuToolsPlayAll.ShortcutKeys = System.Windows.Forms.Keys.F6
Me.mnuToolsPlayAll.Size = New System.Drawing.Size(190, 22)
Me.mnuToolsPlayAll.Text = "mnuToolsPlayAll"
'
'mnuToolsPlay
'
Me.mnuToolsPlay.Name = "mnuToolsPlay"
Me.mnuToolsPlay.ShortcutKeys = System.Windows.Forms.Keys.F7
Me.mnuToolsPlay.Size = New System.Drawing.Size(190, 22)
Me.mnuToolsPlay.Text = "mnuToolsPlay"
'
'mnuToolsPlayStop
'
Me.mnuToolsPlayStop.Name = "mnuToolsPlayStop"
Me.mnuToolsPlayStop.ShortcutKeys = System.Windows.Forms.Keys.F8
Me.mnuToolsPlayStop.Size = New System.Drawing.Size(190, 22)
Me.mnuToolsPlayStop.Text = "mnuToolsPlayStop"
'
'mnuLineTools
'
Me.mnuLineTools.Name = "mnuLineTools"
Me.mnuLineTools.Size = New System.Drawing.Size(187, 6)
'
'mnuToolsSetting
'
Me.mnuToolsSetting.Name = "mnuToolsSetting"
Me.mnuToolsSetting.Size = New System.Drawing.Size(190, 22)
Me.mnuToolsSetting.Text = "mnuToolsSetting"
'
'mnuHelp
'
Me.mnuHelp.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuHelpOpen, Me.mnuLineHelp, Me.mnuHelpWeb, Me.mnuHelpAbout})
Me.mnuHelp.Name = "mnuHelp"
Me.mnuHelp.Size = New System.Drawing.Size(68, 20)
Me.mnuHelp.Text = "mnuHelp"
'
'mnuHelpOpen
'
Me.mnuHelpOpen.Name = "mnuHelpOpen"
Me.mnuHelpOpen.ShortcutKeys = System.Windows.Forms.Keys.F1
Me.mnuHelpOpen.Size = New System.Drawing.Size(171, 22)
Me.mnuHelpOpen.Text = "mnuHelpOpen"
'
'mnuLineHelp
'
Me.mnuLineHelp.Name = "mnuLineHelp"
Me.mnuLineHelp.Size = New System.Drawing.Size(168, 6)
'
'mnuHelpWeb
'
Me.mnuHelpWeb.Name = "mnuHelpWeb"
Me.mnuHelpWeb.Size = New System.Drawing.Size(171, 22)
Me.mnuHelpWeb.Text = "mnuHelpWeb"
'
'mnuHelpAbout
'
Me.mnuHelpAbout.Name = "mnuHelpAbout"
Me.mnuHelpAbout.Size = New System.Drawing.Size(171, 22)
Me.mnuHelpAbout.Text = "mnuHelpAbout"
'
'mnuContext
'
Me.mnuContext.ImageScalingSize = New System.Drawing.Size(24, 24)
Me.mnuContext.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuContextPlayAll, Me.mnuContextPlay, Me.mnuContextBar1, Me.mnuContextInsertMeasure, Me.mnuContextDeleteMeasure, Me.mnuContextBar2, Me.mnuContextEditCut, Me.mnuContextEditCopy, Me.mnuContextEditPaste, Me.mnuContextEditDelete})
Me.mnuContext.Name = "mnuContext"
Me.mnuContext.Size = New System.Drawing.Size(218, 192)
Me.mnuContext.Text = "mnuContext"
'
'mnuContextPlayAll
'
Me.mnuContextPlayAll.Name = "mnuContextPlayAll"
Me.mnuContextPlayAll.Size = New System.Drawing.Size(217, 22)
Me.mnuContextPlayAll.Text = "mnuContextPlayAll"
'
'mnuContextPlay
'
Me.mnuContextPlay.Name = "mnuContextPlay"
Me.mnuContextPlay.Size = New System.Drawing.Size(217, 22)
Me.mnuContextPlay.Text = "mnuContextPlay"
'
'mnuContextBar1
'
Me.mnuContextBar1.Name = "mnuContextBar1"
Me.mnuContextBar1.Size = New System.Drawing.Size(214, 6)
'
'mnuContextInsertMeasure
'
Me.mnuContextInsertMeasure.Name = "mnuContextInsertMeasure"
Me.mnuContextInsertMeasure.Size = New System.Drawing.Size(217, 22)
Me.mnuContextInsertMeasure.Text = "mnuContextInsertMeasure"
'
'mnuContextDeleteMeasure
'
Me.mnuContextDeleteMeasure.Name = "mnuContextDeleteMeasure"
Me.mnuContextDeleteMeasure.Size = New System.Drawing.Size(217, 22)
Me.mnuContextDeleteMeasure.Text = "mnuContextDeleteMeasure"
'
'mnuContextBar2