-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYata.Designer.cs
More file actions
2109 lines (2078 loc) · 84.9 KB
/
Yata.Designer.cs
File metadata and controls
2109 lines (2078 loc) · 84.9 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
using System;
using System.ComponentModel;
using System.Windows.Forms;
namespace yata
{
sealed partial class Yata
{
// okay. Fed up.
// YataTabs 'tabControl' and PropanelButton 'bu_Propanel' have been
// moved to Yata.
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
IContainer components;
internal YataStrip _bar;
ToolStripMenuItem it_MenuFile;
ToolStripMenuItem it_Create;
ToolStripMenuItem it_OpenFolder;
ToolStripMenuItem it_Open;
ToolStripMenuItem it_Reload;
ToolStripMenuItem it_Recent;
ToolStripMenuItem it_Readonly;
ToolStripMenuItem it_Save;
ToolStripMenuItem it_SaveAs;
ToolStripMenuItem it_SaveAll;
ToolStripMenuItem it_Close;
ToolStripMenuItem it_CloseAll;
ToolStripMenuItem it_Quit;
ToolStripMenuItem it_MenuEdit;
ToolStripMenuItem it_Undo;
ToolStripMenuItem it_Redo;
ToolStripMenuItem it_DeselectAll;
ToolStripMenuItem it_Goto;
ToolStripMenuItem it_Search;
ToolStripMenuItem it_Searchnext;
ToolStripMenuItem it_Searchprev;
ToolStripMenuItem it_Replace;
ToolStripMenuItem it_GotoReplaced;
ToolStripMenuItem it_GotoReplaced_pre;
ToolStripMenuItem it_ClearReplaced;
ToolStripMenuItem it_GotoLoadchanged;
ToolStripMenuItem it_GotoLoadchanged_pre;
ToolStripMenuItem it_ClearLoadchanged;
ToolStripMenuItem it_Defaultval;
ToolStripMenuItem it_Defaultclear;
ToolStripMenuItem it_MenuCells;
ToolStripMenuItem it_DeselectCell;
ToolStripMenuItem it_CutCell;
ToolStripMenuItem it_CopyCell;
ToolStripMenuItem it_PasteCell;
ToolStripMenuItem it_DeleteCell;
ToolStripMenuItem it_Lower;
ToolStripMenuItem it_Upper;
ToolStripMenuItem it_Apply;
ToolStripMenuItem it_MenuRows;
ToolStripMenuItem it_DeselectRows;
ToolStripMenuItem it_CutRange;
ToolStripMenuItem it_CopyRange;
ToolStripMenuItem it_PasteRangeInsert;
ToolStripMenuItem it_PasteRangeReplace;
ToolStripMenuItem it_DeleteRange;
ToolStripMenuItem it_CreateRows;
internal ToolStripMenuItem it_MenuCol;
ToolStripMenuItem it_DeselectCol;
ToolStripMenuItem it_CreateHead;
ToolStripMenuItem it_DeleteHead;
ToolStripMenuItem it_RelabelHead;
ToolStripMenuItem it_CopyCells;
ToolStripMenuItem it_PasteCells;
ToolStripMenuItem it_SelectCol;
ToolStripMenuItem it_SelectCol_fake;
internal ToolStripTextBox tb_Goto;
internal ToolStripTextBox tb_Search;
internal YataTsCombo cb_SearchOption;
internal ToolStripMenuItem it_MenuClipboard;
ToolStripMenuItem it_ClipExport;
ToolStripMenuItem it_ClipImport;
ToolStripMenuItem it_OpenClipEditor;
ToolStripMenuItem it_Menu2daOps;
ToolStripMenuItem it_OrderRows;
ToolStripMenuItem it_CheckRows;
ToolStripMenuItem it_ColorRows;
ToolStripMenuItem it_AutoCols;
ToolStripMenuItem it_freeze1;
ToolStripMenuItem it_freeze2;
ToolStripMenuItem it_Propanel;
ToolStripMenuItem it_PropanelLoc;
ToolStripMenuItem it_PropanelLoc_pre;
ToolStripMenuItem it_ExternDiff;
ToolStripMenuItem it_ClearUr;
ToolStripMenuItem it_MenuTalkTable;
internal ToolStripMenuItem it_PathTalkD;
internal ToolStripMenuItem it_PathTalkC;
ToolStripMenuItem it_MenuPaths;
ToolStripMenuItem it_PathAll;
ToolStripMenuItem it_PathAmmunitionTypes2da;
ToolStripMenuItem it_PathBaseItems2da;
ToolStripMenuItem it_PathCategories2da;
ToolStripMenuItem it_PathClasses2da;
ToolStripMenuItem it_PathCombatModes2da;
ToolStripMenuItem it_PathDisease2da;
ToolStripMenuItem it_PathFeat2da;
ToolStripMenuItem it_PathInventorySnds2da;
ToolStripMenuItem it_PathIprpAmmoCost2da;
ToolStripMenuItem it_PathIprpFeats2da;
ToolStripMenuItem it_PathIprpOnHitSpell2da;
ToolStripMenuItem it_PathIprpSpells2da;
ToolStripMenuItem it_PathItemPropDef2da;
ToolStripMenuItem it_PathItemProps2da;
ToolStripMenuItem it_PathMasterFeats2da;
ToolStripMenuItem it_PathPackages2da;
ToolStripMenuItem it_PathRaces2da;
ToolStripMenuItem it_PathRanges2da;
ToolStripMenuItem it_PathSkills2da;
ToolStripMenuItem it_PathSpells2da;
ToolStripMenuItem it_PathSpellTarget2da;
ToolStripMenuItem it_PathWeaponSounds2da;
ToolStripMenuItem it_MenuFont;
ToolStripMenuItem it_Font;
ToolStripMenuItem it_FontDefault;
ToolStripMenuItem it_MenuHelp;
ToolStripMenuItem it_ReadMe;
ToolStripMenuItem it_About;
ToolStripMenuItem it_Options;
ToolStripMenuItem it_Colors;
ToolStripSeparator separator_1;
ToolStripSeparator separator_2;
ToolStripSeparator separator_3;
ToolStripSeparator separator_4;
ToolStripSeparator separator_5;
ToolStripSeparator separator_6;
ToolStripSeparator separator_7;
ToolStripSeparator separator_8;
ToolStripSeparator separator_9;
ToolStripSeparator separator_10;
ToolStripSeparator separator_11;
ToolStripSeparator separator_12;
ToolStripSeparator separator_13;
ToolStripSeparator separator_14;
ToolStripSeparator separator_16;
ToolStripSeparator separator_17;
ToolStripSeparator separator_18;
ToolStripSeparator separator_19;
ToolStripSeparator separator_20;
ToolStripSeparator separator_21;
ToolStripSeparator separator_22;
ToolStripSeparator separator_23;
ToolStripSeparator separator_24;
ToolStripSeparator separator_25;
ToolStripSeparator separator_26;
ToolStripSeparator separator_27;
ToolStripSeparator separator_28;
ToolStripSeparator separator_29;
ToolStripSeparator separator_30;
ToolStripSeparator separator_32;
ToolStripSeparator separator_33;
ToolStripSeparator separator_34;
ToolStripSeparator separator_35;
ToolStripSeparator separator_36;
ToolStripSeparator separator_37;
ToolStripSeparator separator_38;
ToolStripSeparator separator_39;
ToolStripSeparator separator_40;
internal ContextMenuStrip _contextRo;
ToolStripMenuItem rowit_Header;
ToolStripMenuItem rowit_Cut;
ToolStripMenuItem rowit_Copy;
ToolStripMenuItem rowit_PasteAbove;
ToolStripMenuItem rowit_Paste;
ToolStripMenuItem rowit_PasteBelow;
ToolStripMenuItem rowit_CreateAbove;
ToolStripMenuItem rowit_Clear;
ToolStripMenuItem rowit_CreateBelow;
ToolStripMenuItem rowit_Delete;
internal ContextMenuStrip _contextCe;
ToolStripMenuItem cellit_Edit;
ToolStripMenuItem cellit_Cut;
ToolStripMenuItem cellit_Copy;
ToolStripMenuItem cellit_Paste;
ToolStripMenuItem cellit_Clear;
ToolStripMenuItem cellit_Lower;
ToolStripMenuItem cellit_Upper;
ToolStripMenuItem cellit_MergeCe;
ToolStripMenuItem cellit_MergeRo;
ToolStripMenuItem cellit_Selectrow;
ToolStripMenuItem cellit_Copyrowid;
ToolStripMenuItem cellit_Input;
ToolStripMenuItem cellit_Input_zip;
ToolStripMenuItem cellit_Strref;
ToolStripMenuItem cellit_Strref_talktable;
ToolStripMenuItem cellit_Strref_custom;
ToolStripMenuItem cellit_Strref_invalid;
internal ContextMenuStrip _contextTa;
ToolStripMenuItem tabit_Close;
ToolStripMenuItem tabit_CloseAll;
ToolStripMenuItem tabit_CloseAllOthers;
ToolStripMenuItem tabit_Save;
ToolStripMenuItem tabit_Reload;
ToolStripMenuItem tabit_Diff1;
ToolStripMenuItem tabit_Diff2;
ToolStripMenuItem tabit_DiffReset;
ToolStripMenuItem tabit_DiffSync;
StatusStrip statusbar;
ToolStripStatusLabel statbar_Cords;
ToolStripStatusLabel statbar_Icon;
ToolStripStatusLabel statbar_Info;
Panel panel_ColorFill;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed</param>
protected override void Dispose(bool disposing)
{
if (disposing && components != null)
components.Dispose();
FontDefault.Dispose();
FontAccent .Dispose();
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The
/// Forms designer might not be able to load this method if it was
/// changed manually.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this._bar = new yata.YataStrip();
this.it_MenuFile = new System.Windows.Forms.ToolStripMenuItem();
this.it_Create = new System.Windows.Forms.ToolStripMenuItem();
this.separator_38 = new System.Windows.Forms.ToolStripSeparator();
this.it_OpenFolder = new System.Windows.Forms.ToolStripMenuItem();
this.it_Open = new System.Windows.Forms.ToolStripMenuItem();
this.it_Reload = new System.Windows.Forms.ToolStripMenuItem();
this.it_Recent = new System.Windows.Forms.ToolStripMenuItem();
this.separator_29 = new System.Windows.Forms.ToolStripSeparator();
this.it_Readonly = new System.Windows.Forms.ToolStripMenuItem();
this.separator_1 = new System.Windows.Forms.ToolStripSeparator();
this.it_Save = new System.Windows.Forms.ToolStripMenuItem();
this.it_SaveAs = new System.Windows.Forms.ToolStripMenuItem();
this.it_SaveAll = new System.Windows.Forms.ToolStripMenuItem();
this.separator_22 = new System.Windows.Forms.ToolStripSeparator();
this.it_Close = new System.Windows.Forms.ToolStripMenuItem();
this.it_CloseAll = new System.Windows.Forms.ToolStripMenuItem();
this.separator_2 = new System.Windows.Forms.ToolStripSeparator();
this.it_Quit = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuEdit = new System.Windows.Forms.ToolStripMenuItem();
this.it_Undo = new System.Windows.Forms.ToolStripMenuItem();
this.it_Redo = new System.Windows.Forms.ToolStripMenuItem();
this.separator_35 = new System.Windows.Forms.ToolStripSeparator();
this.it_DeselectAll = new System.Windows.Forms.ToolStripMenuItem();
this.separator_18 = new System.Windows.Forms.ToolStripSeparator();
this.it_Goto = new System.Windows.Forms.ToolStripMenuItem();
this.separator_39 = new System.Windows.Forms.ToolStripSeparator();
this.it_Search = new System.Windows.Forms.ToolStripMenuItem();
this.it_Searchnext = new System.Windows.Forms.ToolStripMenuItem();
this.it_Searchprev = new System.Windows.Forms.ToolStripMenuItem();
this.separator_5 = new System.Windows.Forms.ToolStripSeparator();
this.it_Replace = new System.Windows.Forms.ToolStripMenuItem();
this.it_GotoReplaced = new System.Windows.Forms.ToolStripMenuItem();
this.it_GotoReplaced_pre = new System.Windows.Forms.ToolStripMenuItem();
this.it_ClearReplaced = new System.Windows.Forms.ToolStripMenuItem();
this.separator_3 = new System.Windows.Forms.ToolStripSeparator();
this.it_GotoLoadchanged = new System.Windows.Forms.ToolStripMenuItem();
this.it_GotoLoadchanged_pre = new System.Windows.Forms.ToolStripMenuItem();
this.it_ClearLoadchanged = new System.Windows.Forms.ToolStripMenuItem();
this.separator_37 = new System.Windows.Forms.ToolStripSeparator();
this.it_Defaultval = new System.Windows.Forms.ToolStripMenuItem();
this.it_Defaultclear = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuCells = new System.Windows.Forms.ToolStripMenuItem();
this.it_DeselectCell = new System.Windows.Forms.ToolStripMenuItem();
this.separator_30 = new System.Windows.Forms.ToolStripSeparator();
this.it_CutCell = new System.Windows.Forms.ToolStripMenuItem();
this.it_CopyCell = new System.Windows.Forms.ToolStripMenuItem();
this.it_PasteCell = new System.Windows.Forms.ToolStripMenuItem();
this.it_DeleteCell = new System.Windows.Forms.ToolStripMenuItem();
this.separator_20 = new System.Windows.Forms.ToolStripSeparator();
this.it_Lower = new System.Windows.Forms.ToolStripMenuItem();
this.it_Upper = new System.Windows.Forms.ToolStripMenuItem();
this.separator_4 = new System.Windows.Forms.ToolStripSeparator();
this.it_Apply = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuRows = new System.Windows.Forms.ToolStripMenuItem();
this.it_DeselectRows = new System.Windows.Forms.ToolStripMenuItem();
this.separator_33 = new System.Windows.Forms.ToolStripSeparator();
this.it_CutRange = new System.Windows.Forms.ToolStripMenuItem();
this.it_CopyRange = new System.Windows.Forms.ToolStripMenuItem();
this.it_PasteRangeInsert = new System.Windows.Forms.ToolStripMenuItem();
this.it_PasteRangeReplace = new System.Windows.Forms.ToolStripMenuItem();
this.it_DeleteRange = new System.Windows.Forms.ToolStripMenuItem();
this.separator_13 = new System.Windows.Forms.ToolStripSeparator();
this.it_CreateRows = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuCol = new System.Windows.Forms.ToolStripMenuItem();
this.it_DeselectCol = new System.Windows.Forms.ToolStripMenuItem();
this.separator_34 = new System.Windows.Forms.ToolStripSeparator();
this.it_CreateHead = new System.Windows.Forms.ToolStripMenuItem();
this.it_DeleteHead = new System.Windows.Forms.ToolStripMenuItem();
this.it_RelabelHead = new System.Windows.Forms.ToolStripMenuItem();
this.separator_32 = new System.Windows.Forms.ToolStripSeparator();
this.it_CopyCells = new System.Windows.Forms.ToolStripMenuItem();
this.it_PasteCells = new System.Windows.Forms.ToolStripMenuItem();
this.separator_6 = new System.Windows.Forms.ToolStripSeparator();
this.it_SelectCol = new System.Windows.Forms.ToolStripMenuItem();
this.it_SelectCol_fake = new System.Windows.Forms.ToolStripMenuItem();
this.tb_Goto = new System.Windows.Forms.ToolStripTextBox();
this.tb_Search = new System.Windows.Forms.ToolStripTextBox();
this.cb_SearchOption = new yata.YataTsCombo();
this.it_MenuClipboard = new System.Windows.Forms.ToolStripMenuItem();
this.it_ClipExport = new System.Windows.Forms.ToolStripMenuItem();
this.it_ClipImport = new System.Windows.Forms.ToolStripMenuItem();
this.separator_19 = new System.Windows.Forms.ToolStripSeparator();
this.it_OpenClipEditor = new System.Windows.Forms.ToolStripMenuItem();
this.it_Menu2daOps = new System.Windows.Forms.ToolStripMenuItem();
this.it_OrderRows = new System.Windows.Forms.ToolStripMenuItem();
this.it_CheckRows = new System.Windows.Forms.ToolStripMenuItem();
this.separator_11 = new System.Windows.Forms.ToolStripSeparator();
this.it_ColorRows = new System.Windows.Forms.ToolStripMenuItem();
this.it_AutoCols = new System.Windows.Forms.ToolStripMenuItem();
this.separator_12 = new System.Windows.Forms.ToolStripSeparator();
this.it_freeze1 = new System.Windows.Forms.ToolStripMenuItem();
this.it_freeze2 = new System.Windows.Forms.ToolStripMenuItem();
this.separator_17 = new System.Windows.Forms.ToolStripSeparator();
this.it_Propanel = new System.Windows.Forms.ToolStripMenuItem();
this.it_PropanelLoc = new System.Windows.Forms.ToolStripMenuItem();
this.it_PropanelLoc_pre = new System.Windows.Forms.ToolStripMenuItem();
this.separator_25 = new System.Windows.Forms.ToolStripSeparator();
this.it_ExternDiff = new System.Windows.Forms.ToolStripMenuItem();
this.separator_21 = new System.Windows.Forms.ToolStripSeparator();
this.it_ClearUr = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuTalkTable = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathTalkD = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathTalkC = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuPaths = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathAll = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathAmmunitionTypes2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathBaseItems2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathCategories2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathClasses2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathCombatModes2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathDisease2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathFeat2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathInventorySnds2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathIprpAmmoCost2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathIprpFeats2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathIprpOnHitSpell2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathIprpSpells2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathItemPropDef2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathItemProps2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathMasterFeats2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathPackages2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathRaces2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathRanges2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathSkills2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathSpells2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathSpellTarget2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_PathWeaponSounds2da = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuFont = new System.Windows.Forms.ToolStripMenuItem();
this.it_Font = new System.Windows.Forms.ToolStripMenuItem();
this.it_FontDefault = new System.Windows.Forms.ToolStripMenuItem();
this.it_MenuHelp = new System.Windows.Forms.ToolStripMenuItem();
this.it_ReadMe = new System.Windows.Forms.ToolStripMenuItem();
this.it_About = new System.Windows.Forms.ToolStripMenuItem();
this.separator_36 = new System.Windows.Forms.ToolStripSeparator();
this.it_Options = new System.Windows.Forms.ToolStripMenuItem();
this.it_Colors = new System.Windows.Forms.ToolStripMenuItem();
this._contextRo = new System.Windows.Forms.ContextMenuStrip(this.components);
this.rowit_Header = new System.Windows.Forms.ToolStripMenuItem();
this.separator_7 = new System.Windows.Forms.ToolStripSeparator();
this.rowit_Cut = new System.Windows.Forms.ToolStripMenuItem();
this.rowit_Copy = new System.Windows.Forms.ToolStripMenuItem();
this.separator_8 = new System.Windows.Forms.ToolStripSeparator();
this.rowit_PasteAbove = new System.Windows.Forms.ToolStripMenuItem();
this.rowit_Paste = new System.Windows.Forms.ToolStripMenuItem();
this.rowit_PasteBelow = new System.Windows.Forms.ToolStripMenuItem();
this.separator_9 = new System.Windows.Forms.ToolStripSeparator();
this.rowit_CreateAbove = new System.Windows.Forms.ToolStripMenuItem();
this.rowit_Clear = new System.Windows.Forms.ToolStripMenuItem();
this.rowit_CreateBelow = new System.Windows.Forms.ToolStripMenuItem();
this.separator_10 = new System.Windows.Forms.ToolStripSeparator();
this.rowit_Delete = new System.Windows.Forms.ToolStripMenuItem();
this.statusbar = new System.Windows.Forms.StatusStrip();
this.statbar_Cords = new System.Windows.Forms.ToolStripStatusLabel();
this.statbar_Icon = new System.Windows.Forms.ToolStripStatusLabel();
this.statbar_Info = new System.Windows.Forms.ToolStripStatusLabel();
this.panel_ColorFill = new System.Windows.Forms.Panel();
this._contextCe = new System.Windows.Forms.ContextMenuStrip(this.components);
this.cellit_Edit = new System.Windows.Forms.ToolStripMenuItem();
this.separator_27 = new System.Windows.Forms.ToolStripSeparator();
this.cellit_Cut = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Copy = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Paste = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Clear = new System.Windows.Forms.ToolStripMenuItem();
this.separator_16 = new System.Windows.Forms.ToolStripSeparator();
this.cellit_Lower = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Upper = new System.Windows.Forms.ToolStripMenuItem();
this.separator_24 = new System.Windows.Forms.ToolStripSeparator();
this.cellit_MergeCe = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_MergeRo = new System.Windows.Forms.ToolStripMenuItem();
this.separator_28 = new System.Windows.Forms.ToolStripSeparator();
this.cellit_Selectrow = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Copyrowid = new System.Windows.Forms.ToolStripMenuItem();
this.separator_40 = new System.Windows.Forms.ToolStripSeparator();
this.cellit_Strref = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Strref_talktable = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Strref_custom = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Strref_invalid = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Input = new System.Windows.Forms.ToolStripMenuItem();
this.cellit_Input_zip = new System.Windows.Forms.ToolStripMenuItem();
this._contextTa = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tabit_Close = new System.Windows.Forms.ToolStripMenuItem();
this.tabit_CloseAll = new System.Windows.Forms.ToolStripMenuItem();
this.tabit_CloseAllOthers = new System.Windows.Forms.ToolStripMenuItem();
this.separator_14 = new System.Windows.Forms.ToolStripSeparator();
this.tabit_Save = new System.Windows.Forms.ToolStripMenuItem();
this.separator_26 = new System.Windows.Forms.ToolStripSeparator();
this.tabit_Reload = new System.Windows.Forms.ToolStripMenuItem();
this.separator_23 = new System.Windows.Forms.ToolStripSeparator();
this.tabit_Diff1 = new System.Windows.Forms.ToolStripMenuItem();
this.tabit_Diff2 = new System.Windows.Forms.ToolStripMenuItem();
this.tabit_DiffReset = new System.Windows.Forms.ToolStripMenuItem();
this.tabit_DiffSync = new System.Windows.Forms.ToolStripMenuItem();
this._bar.SuspendLayout();
this._contextRo.SuspendLayout();
this.statusbar.SuspendLayout();
this._contextCe.SuspendLayout();
this._contextTa.SuspendLayout();
this.SuspendLayout();
//
// _bar
//
this._bar.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this._bar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.it_MenuFile,
this.it_MenuEdit,
this.it_MenuCells,
this.it_MenuRows,
this.it_MenuCol,
this.tb_Goto,
this.tb_Search,
this.cb_SearchOption,
this.it_MenuClipboard,
this.it_Menu2daOps,
this.it_MenuTalkTable,
this.it_MenuPaths,
this.it_MenuFont,
this.it_MenuHelp});
this._bar.Location = new System.Drawing.Point(0, 0);
this._bar.Name = "_bar";
this._bar.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
this._bar.Size = new System.Drawing.Size(867, 24);
this._bar.TabIndex = 0;
//
// it_MenuFile
//
this.it_MenuFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.it_MenuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.it_Create,
this.separator_38,
this.it_OpenFolder,
this.it_Open,
this.it_Reload,
this.it_Recent,
this.separator_29,
this.it_Readonly,
this.separator_1,
this.it_Save,
this.it_SaveAs,
this.it_SaveAll,
this.separator_22,
this.it_Close,
this.it_CloseAll,
this.separator_2,
this.it_Quit});
this.it_MenuFile.Name = "it_MenuFile";
this.it_MenuFile.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.it_MenuFile.Size = new System.Drawing.Size(34, 20);
this.it_MenuFile.Text = "&File";
this.it_MenuFile.DropDownOpening += new System.EventHandler(this.file_dropdownopening);
//
// it_Create
//
this.it_Create.Name = "it_Create";
this.it_Create.Size = new System.Drawing.Size(181, 22);
this.it_Create.Text = "Create ...";
this.it_Create.Click += new System.EventHandler(this.fileclick_Create);
//
// separator_38
//
this.separator_38.Name = "separator_38";
this.separator_38.Size = new System.Drawing.Size(178, 6);
//
// it_OpenFolder
//
this.it_OpenFolder.Name = "it_OpenFolder";
this.it_OpenFolder.Size = new System.Drawing.Size(181, 22);
this.it_OpenFolder.Text = "Ope&n ... @ folder";
this.it_OpenFolder.Visible = false;
//
// it_Open
//
this.it_Open.Name = "it_Open";
this.it_Open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.it_Open.Size = new System.Drawing.Size(181, 22);
this.it_Open.Text = "&Open ...";
this.it_Open.Click += new System.EventHandler(this.fileclick_Open);
//
// it_Reload
//
this.it_Reload.Enabled = false;
this.it_Reload.Name = "it_Reload";
this.it_Reload.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
this.it_Reload.Size = new System.Drawing.Size(181, 22);
this.it_Reload.Text = "&Reload";
this.it_Reload.Click += new System.EventHandler(this.fileclick_Reload);
//
// it_Recent
//
this.it_Recent.Name = "it_Recent";
this.it_Recent.Size = new System.Drawing.Size(181, 22);
this.it_Recent.Text = "Recen&t";
this.it_Recent.Visible = false;
//
// separator_29
//
this.separator_29.Name = "separator_29";
this.separator_29.Size = new System.Drawing.Size(178, 6);
//
// it_Readonly
//
this.it_Readonly.CheckOnClick = true;
this.it_Readonly.Enabled = false;
this.it_Readonly.Name = "it_Readonly";
this.it_Readonly.ShortcutKeys = System.Windows.Forms.Keys.F12;
this.it_Readonly.Size = new System.Drawing.Size(181, 22);
this.it_Readonly.Text = "Rea&donly";
this.it_Readonly.Click += new System.EventHandler(this.fileclick_Readonly);
//
// separator_1
//
this.separator_1.Name = "separator_1";
this.separator_1.Size = new System.Drawing.Size(178, 6);
//
// it_Save
//
this.it_Save.Enabled = false;
this.it_Save.Name = "it_Save";
this.it_Save.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.it_Save.Size = new System.Drawing.Size(181, 22);
this.it_Save.Text = "&Save";
this.it_Save.Click += new System.EventHandler(this.fileclick_Save);
//
// it_SaveAs
//
this.it_SaveAs.Enabled = false;
this.it_SaveAs.Name = "it_SaveAs";
this.it_SaveAs.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
this.it_SaveAs.Size = new System.Drawing.Size(181, 22);
this.it_SaveAs.Text = "Sav&e As ...";
this.it_SaveAs.Click += new System.EventHandler(this.fileclick_SaveAs);
//
// it_SaveAll
//
this.it_SaveAll.Enabled = false;
this.it_SaveAll.Name = "it_SaveAll";
this.it_SaveAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
this.it_SaveAll.Size = new System.Drawing.Size(181, 22);
this.it_SaveAll.Text = "Save &All";
this.it_SaveAll.Click += new System.EventHandler(this.fileclick_SaveAll);
//
// separator_22
//
this.separator_22.Name = "separator_22";
this.separator_22.Size = new System.Drawing.Size(178, 6);
//
// it_Close
//
this.it_Close.Enabled = false;
this.it_Close.Name = "it_Close";
this.it_Close.ShortcutKeys = System.Windows.Forms.Keys.F4;
this.it_Close.Size = new System.Drawing.Size(181, 22);
this.it_Close.Text = "&Close";
this.it_Close.Click += new System.EventHandler(this.fileclick_CloseTabpage);
//
// it_CloseAll
//
this.it_CloseAll.Enabled = false;
this.it_CloseAll.Name = "it_CloseAll";
this.it_CloseAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4)));
this.it_CloseAll.Size = new System.Drawing.Size(181, 22);
this.it_CloseAll.Text = "C&lose all";
this.it_CloseAll.Click += new System.EventHandler(this.fileclick_CloseTabpages);
//
// separator_2
//
this.separator_2.Name = "separator_2";
this.separator_2.Size = new System.Drawing.Size(178, 6);
//
// it_Quit
//
this.it_Quit.Name = "it_Quit";
this.it_Quit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
this.it_Quit.Size = new System.Drawing.Size(181, 22);
this.it_Quit.Text = "&Quit";
this.it_Quit.Click += new System.EventHandler(this.fileclick_Quit);
//
// it_MenuEdit
//
this.it_MenuEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.it_MenuEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.it_Undo,
this.it_Redo,
this.separator_35,
this.it_DeselectAll,
this.separator_18,
this.it_Goto,
this.separator_39,
this.it_Search,
this.it_Searchnext,
this.it_Searchprev,
this.separator_5,
this.it_Replace,
this.it_GotoReplaced,
this.it_GotoReplaced_pre,
this.it_ClearReplaced,
this.separator_3,
this.it_GotoLoadchanged,
this.it_GotoLoadchanged_pre,
this.it_ClearLoadchanged,
this.separator_37,
this.it_Defaultval,
this.it_Defaultclear});
this.it_MenuEdit.Name = "it_MenuEdit";
this.it_MenuEdit.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.it_MenuEdit.Size = new System.Drawing.Size(36, 20);
this.it_MenuEdit.Text = "&Edit";
this.it_MenuEdit.DropDownOpening += new System.EventHandler(this.edit_dropdownopening);
//
// it_Undo
//
this.it_Undo.Enabled = false;
this.it_Undo.Name = "it_Undo";
this.it_Undo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
this.it_Undo.Size = new System.Drawing.Size(280, 22);
this.it_Undo.Text = "&Undo";
this.it_Undo.Click += new System.EventHandler(this.editclick_Undo);
//
// it_Redo
//
this.it_Redo.Enabled = false;
this.it_Redo.Name = "it_Redo";
this.it_Redo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
this.it_Redo.Size = new System.Drawing.Size(280, 22);
this.it_Redo.Text = "&Redo";
this.it_Redo.Click += new System.EventHandler(this.editclick_Redo);
//
// separator_35
//
this.separator_35.Name = "separator_35";
this.separator_35.Size = new System.Drawing.Size(277, 6);
//
// it_DeselectAll
//
this.it_DeselectAll.Enabled = false;
this.it_DeselectAll.Name = "it_DeselectAll";
this.it_DeselectAll.ShortcutKeyDisplayString = "Esc";
this.it_DeselectAll.Size = new System.Drawing.Size(280, 22);
this.it_DeselectAll.Text = "De&select all";
this.it_DeselectAll.Click += new System.EventHandler(this.editclick_Deselect);
//
// separator_18
//
this.separator_18.Name = "separator_18";
this.separator_18.Size = new System.Drawing.Size(277, 6);
//
// it_Goto
//
this.it_Goto.Name = "it_Goto";
this.it_Goto.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G)));
this.it_Goto.Size = new System.Drawing.Size(280, 22);
this.it_Goto.Text = "&Goto";
this.it_Goto.Click += new System.EventHandler(this.editclick_Goto);
//
// separator_39
//
this.separator_39.Name = "separator_39";
this.separator_39.Size = new System.Drawing.Size(277, 6);
//
// it_Search
//
this.it_Search.Name = "it_Search";
this.it_Search.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.it_Search.Size = new System.Drawing.Size(280, 22);
this.it_Search.Text = "&Find";
this.it_Search.Click += new System.EventHandler(this.editclick_FocusSearch);
//
// it_Searchnext
//
this.it_Searchnext.Enabled = false;
this.it_Searchnext.Name = "it_Searchnext";
this.it_Searchnext.ShortcutKeys = System.Windows.Forms.Keys.F3;
this.it_Searchnext.Size = new System.Drawing.Size(280, 22);
this.it_Searchnext.Text = "Fin&d next";
this.it_Searchnext.Click += new System.EventHandler(this.editclick_StartSearch);
//
// it_Searchprev
//
this.it_Searchprev.Enabled = false;
this.it_Searchprev.Name = "it_Searchprev";
this.it_Searchprev.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F3)));
this.it_Searchprev.Size = new System.Drawing.Size(280, 22);
this.it_Searchprev.Text = "Find &pre";
this.it_Searchprev.Click += new System.EventHandler(this.editclick_StartSearch);
//
// separator_5
//
this.separator_5.Name = "separator_5";
this.separator_5.Size = new System.Drawing.Size(277, 6);
//
// it_Replace
//
this.it_Replace.Name = "it_Replace";
this.it_Replace.Size = new System.Drawing.Size(280, 22);
this.it_Replace.Text = "Replace text ...";
this.it_Replace.Click += new System.EventHandler(this.editclick_ReplaceText);
//
// it_GotoReplaced
//
this.it_GotoReplaced.Enabled = false;
this.it_GotoReplaced.Name = "it_GotoReplaced";
this.it_GotoReplaced.Size = new System.Drawing.Size(280, 22);
this.it_GotoReplaced.Text = "Goto replaced next";
this.it_GotoReplaced.Click += new System.EventHandler(this.editclick_GotoReplaced);
//
// it_GotoReplaced_pre
//
this.it_GotoReplaced_pre.Enabled = false;
this.it_GotoReplaced_pre.Name = "it_GotoReplaced_pre";
this.it_GotoReplaced_pre.Size = new System.Drawing.Size(280, 22);
this.it_GotoReplaced_pre.Text = "Goto replaced pre";
this.it_GotoReplaced_pre.Click += new System.EventHandler(this.editclick_GotoReplaced);
//
// it_ClearReplaced
//
this.it_ClearReplaced.Enabled = false;
this.it_ClearReplaced.Name = "it_ClearReplaced";
this.it_ClearReplaced.Size = new System.Drawing.Size(280, 22);
this.it_ClearReplaced.Text = "Clear replaced flags";
this.it_ClearReplaced.Click += new System.EventHandler(this.editclick_ClearReplaced);
//
// separator_3
//
this.separator_3.Name = "separator_3";
this.separator_3.Size = new System.Drawing.Size(277, 6);
//
// it_GotoLoadchanged
//
this.it_GotoLoadchanged.Enabled = false;
this.it_GotoLoadchanged.Name = "it_GotoLoadchanged";
this.it_GotoLoadchanged.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.it_GotoLoadchanged.Size = new System.Drawing.Size(280, 22);
this.it_GotoLoadchanged.Text = "Goto loadcha&nged next";
this.it_GotoLoadchanged.Click += new System.EventHandler(this.editclick_GotoLoadchanged);
//
// it_GotoLoadchanged_pre
//
this.it_GotoLoadchanged_pre.Enabled = false;
this.it_GotoLoadchanged_pre.Name = "it_GotoLoadchanged_pre";
this.it_GotoLoadchanged_pre.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.N)));
this.it_GotoLoadchanged_pre.Size = new System.Drawing.Size(280, 22);
this.it_GotoLoadchanged_pre.Text = "Goto lo&adchanged pre";
this.it_GotoLoadchanged_pre.Click += new System.EventHandler(this.editclick_GotoLoadchanged);
//
// it_ClearLoadchanged
//
this.it_ClearLoadchanged.Enabled = false;
this.it_ClearLoadchanged.Name = "it_ClearLoadchanged";
this.it_ClearLoadchanged.Size = new System.Drawing.Size(280, 22);
this.it_ClearLoadchanged.Text = "Clear loadchanged flags";
this.it_ClearLoadchanged.Click += new System.EventHandler(this.editclick_ClearLoadchanged);
//
// separator_37
//
this.separator_37.Name = "separator_37";
this.separator_37.Size = new System.Drawing.Size(277, 6);
//
// it_Defaultval
//
this.it_Defaultval.Enabled = false;
this.it_Defaultval.Name = "it_Defaultval";
this.it_Defaultval.Size = new System.Drawing.Size(280, 22);
this.it_Defaultval.Text = "Default &value ...";
this.it_Defaultval.Click += new System.EventHandler(this.editclick_Defaultval);
//
// it_Defaultclear
//
this.it_Defaultclear.Enabled = false;
this.it_Defaultclear.Name = "it_Defaultclear";
this.it_Defaultclear.Size = new System.Drawing.Size(280, 22);
this.it_Defaultclear.Text = "&Clear Default";
this.it_Defaultclear.Click += new System.EventHandler(this.editclick_Defaultclear);
//
// it_MenuCells
//
this.it_MenuCells.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.it_MenuCells.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.it_DeselectCell,
this.separator_30,
this.it_CutCell,
this.it_CopyCell,
this.it_PasteCell,
this.it_DeleteCell,
this.separator_20,
this.it_Lower,
this.it_Upper,
this.separator_4,
this.it_Apply});
this.it_MenuCells.Name = "it_MenuCells";
this.it_MenuCells.Size = new System.Drawing.Size(47, 20);
this.it_MenuCells.Text = "&Cells";
//
// it_DeselectCell
//
this.it_DeselectCell.Enabled = false;
this.it_DeselectCell.Name = "it_DeselectCell";
this.it_DeselectCell.ShortcutKeyDisplayString = "Esc";
this.it_DeselectCell.Size = new System.Drawing.Size(175, 22);
this.it_DeselectCell.Text = "De&select all";
this.it_DeselectCell.Click += new System.EventHandler(this.editclick_Deselect);
//
// separator_30
//
this.separator_30.Name = "separator_30";
this.separator_30.Size = new System.Drawing.Size(172, 6);
//
// it_CutCell
//
this.it_CutCell.Enabled = false;
this.it_CutCell.Name = "it_CutCell";
this.it_CutCell.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
this.it_CutCell.Size = new System.Drawing.Size(175, 22);
this.it_CutCell.Text = "Cu&t";
this.it_CutCell.Click += new System.EventHandler(this.editcellsclick_CutCell);
//
// it_CopyCell
//
this.it_CopyCell.Enabled = false;
this.it_CopyCell.Name = "it_CopyCell";
this.it_CopyCell.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.it_CopyCell.Size = new System.Drawing.Size(175, 22);
this.it_CopyCell.Text = "&Copy";
this.it_CopyCell.Click += new System.EventHandler(this.editcellsclick_CopyCell);
//
// it_PasteCell
//
this.it_PasteCell.Enabled = false;
this.it_PasteCell.Name = "it_PasteCell";
this.it_PasteCell.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
this.it_PasteCell.Size = new System.Drawing.Size(175, 22);
this.it_PasteCell.Text = "&Paste";
this.it_PasteCell.Click += new System.EventHandler(this.editcellsclick_PasteCell);
//
// it_DeleteCell
//
this.it_DeleteCell.Enabled = false;
this.it_DeleteCell.Name = "it_DeleteCell";
this.it_DeleteCell.ShortcutKeys = System.Windows.Forms.Keys.Delete;
this.it_DeleteCell.Size = new System.Drawing.Size(175, 22);
this.it_DeleteCell.Text = "Clea&r";
this.it_DeleteCell.Click += new System.EventHandler(this.editcellsclick_Delete);
//
// separator_20
//
this.separator_20.Name = "separator_20";
this.separator_20.Size = new System.Drawing.Size(172, 6);
//
// it_Lower
//
this.it_Lower.Enabled = false;
this.it_Lower.Name = "it_Lower";
this.it_Lower.Size = new System.Drawing.Size(175, 22);
this.it_Lower.Text = "&Lowercase";
this.it_Lower.Click += new System.EventHandler(this.editcellsclick_Lower);
//
// it_Upper
//
this.it_Upper.Enabled = false;
this.it_Upper.Name = "it_Upper";
this.it_Upper.Size = new System.Drawing.Size(175, 22);
this.it_Upper.Text = "&Uppercase";
this.it_Upper.Click += new System.EventHandler(this.editcellsclick_Upper);
//
// separator_4
//
this.separator_4.Name = "separator_4";
this.separator_4.Size = new System.Drawing.Size(172, 6);
//
// it_Apply
//
this.it_Apply.Enabled = false;
this.it_Apply.Name = "it_Apply";
this.it_Apply.ShortcutKeys = System.Windows.Forms.Keys.F11;
this.it_Apply.Size = new System.Drawing.Size(175, 22);
this.it_Apply.Text = "&Apply text ...";
this.it_Apply.Click += new System.EventHandler(this.editcellsclick_Apply);
//
// it_MenuRows
//
this.it_MenuRows.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.it_MenuRows.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.it_DeselectRows,
this.separator_33,
this.it_CutRange,
this.it_CopyRange,
this.it_PasteRangeInsert,
this.it_PasteRangeReplace,
this.it_DeleteRange,
this.separator_13,
this.it_CreateRows});
this.it_MenuRows.Name = "it_MenuRows";
this.it_MenuRows.Size = new System.Drawing.Size(49, 20);
this.it_MenuRows.Text = "&Rows";
//
// it_DeselectRows
//
this.it_DeselectRows.Enabled = false;
this.it_DeselectRows.Name = "it_DeselectRows";
this.it_DeselectRows.Size = new System.Drawing.Size(185, 22);
this.it_DeselectRows.Text = "De&select";
this.it_DeselectRows.Click += new System.EventHandler(this.editrowsclick_Deselect);
//
// separator_33
//
this.separator_33.Name = "separator_33";
this.separator_33.Size = new System.Drawing.Size(182, 6);
//
// it_CutRange
//
this.it_CutRange.Enabled = false;
this.it_CutRange.Name = "it_CutRange";
this.it_CutRange.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.X)));
this.it_CutRange.Size = new System.Drawing.Size(185, 22);
this.it_CutRange.Text = "Cu&t";
this.it_CutRange.Click += new System.EventHandler(this.editrowsclick_CutRange);
//
// it_CopyRange
//
this.it_CopyRange.Enabled = false;
this.it_CopyRange.Name = "it_CopyRange";
this.it_CopyRange.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.C)));
this.it_CopyRange.Size = new System.Drawing.Size(185, 22);
this.it_CopyRange.Text = "&Copy";
this.it_CopyRange.Click += new System.EventHandler(this.editrowsclick_CopyRange);
//
// it_PasteRangeInsert
//
this.it_PasteRangeInsert.Enabled = false;
this.it_PasteRangeInsert.Name = "it_PasteRangeInsert";
this.it_PasteRangeInsert.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.V)));
this.it_PasteRangeInsert.Size = new System.Drawing.Size(185, 22);
this.it_PasteRangeInsert.Text = "&Paste - insert";
this.it_PasteRangeInsert.Click += new System.EventHandler(this.editrowsclick_PasteRangeInsert);
//
// it_PasteRangeReplace
//
this.it_PasteRangeReplace.Enabled = false;
this.it_PasteRangeReplace.Name = "it_PasteRangeReplace";