-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
552 lines (545 loc) · 29 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
namespace NepTrans
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
this.tbRootDirectory = new System.Windows.Forms.TextBox();
this.dgvWorkspace = new System.Windows.Forms.DataGridView();
this.colId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colTextEng = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colTextJap = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colTextVie = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.checkUseCurrentDir = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.groupTextEng = new System.Windows.Forms.GroupBox();
this.tbTextEng = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.tbTextJap = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.btnCoopyToClipboard = new System.Windows.Forms.Button();
this.tbTextVie = new System.Windows.Forms.TextBox();
this.treeDirStruct = new System.Windows.Forms.TreeView();
this.btnSelectRootDir = new System.Windows.Forms.Button();
this.btnUpdate = new System.Windows.Forms.Button();
this.btnSaveEntry = new System.Windows.Forms.Button();
this.pbOverall = new System.Windows.Forms.ProgressBar();
this.pbGameScript = new System.Windows.Forms.ProgressBar();
this.pbSystemScript = new System.Windows.Forms.ProgressBar();
this.pbCurEntryStat = new System.Windows.Forms.ProgressBar();
this.label3 = new System.Windows.Forms.Label();
this.lblCurEntryStat = new System.Windows.Forms.Label();
this.lblOverallStat = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.lblGameScriptStat = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.lblSystemScriptStat = new System.Windows.Forms.Label();
this.lblSystemScriptHeader = new System.Windows.Forms.Label();
this.btnVerifyDirectory = new System.Windows.Forms.Button();
this.btSaveProj = new System.Windows.Forms.Button();
this.btnKeepOrg = new System.Windows.Forms.Button();
this.btnSummaryReport = new System.Windows.Forms.Button();
this.btnAutofill = new System.Windows.Forms.Button();
this.cbAppendRecordInfo = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.dgvWorkspace)).BeginInit();
this.groupTextEng.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// tbRootDirectory
//
this.tbRootDirectory.Location = new System.Drawing.Point(93, 12);
this.tbRootDirectory.Name = "tbRootDirectory";
this.tbRootDirectory.Size = new System.Drawing.Size(875, 20);
this.tbRootDirectory.TabIndex = 0;
this.tbRootDirectory.TextChanged += new System.EventHandler(this.tbRootDirectory_TextChanged);
//
// dgvWorkspace
//
this.dgvWorkspace.AllowUserToAddRows = false;
this.dgvWorkspace.AllowUserToDeleteRows = false;
this.dgvWorkspace.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.dgvWorkspace.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.colId,
this.colTextEng,
this.colTextJap,
this.colTextVie});
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvWorkspace.DefaultCellStyle = dataGridViewCellStyle3;
this.dgvWorkspace.Location = new System.Drawing.Point(286, 67);
this.dgvWorkspace.MultiSelect = false;
this.dgvWorkspace.Name = "dgvWorkspace";
this.dgvWorkspace.ReadOnly = true;
this.dgvWorkspace.RowHeadersWidth = 25;
this.dgvWorkspace.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this.dgvWorkspace.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvWorkspace.Size = new System.Drawing.Size(982, 250);
this.dgvWorkspace.TabIndex = 1;
this.dgvWorkspace.SelectionChanged += new System.EventHandler(this.dgvWorkspace_SelectionChanged);
//
// colId
//
this.colId.Frozen = true;
this.colId.HeaderText = "id";
this.colId.Name = "colId";
this.colId.ReadOnly = true;
this.colId.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.colId.Width = 85;
//
// colTextEng
//
this.colTextEng.Frozen = true;
this.colTextEng.HeaderText = "eng";
this.colTextEng.Name = "colTextEng";
this.colTextEng.ReadOnly = true;
this.colTextEng.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.colTextEng.Width = 280;
//
// colTextJap
//
this.colTextJap.Frozen = true;
this.colTextJap.HeaderText = "jap";
this.colTextJap.Name = "colTextJap";
this.colTextJap.ReadOnly = true;
this.colTextJap.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.colTextJap.Width = 280;
//
// colTextVie
//
this.colTextVie.Frozen = true;
this.colTextVie.HeaderText = "vie";
this.colTextVie.Name = "colTextVie";
this.colTextVie.ReadOnly = true;
this.colTextVie.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.colTextVie.Width = 280;
//
// checkUseCurrentDir
//
this.checkUseCurrentDir.AutoSize = true;
this.checkUseCurrentDir.Enabled = false;
this.checkUseCurrentDir.Location = new System.Drawing.Point(249, 42);
this.checkUseCurrentDir.Name = "checkUseCurrentDir";
this.checkUseCurrentDir.Size = new System.Drawing.Size(127, 17);
this.checkUseCurrentDir.TabIndex = 2;
this.checkUseCurrentDir.Text = "Use Current Directory";
this.checkUseCurrentDir.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(75, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Root Directory";
//
// groupTextEng
//
this.groupTextEng.Controls.Add(this.tbTextEng);
this.groupTextEng.Location = new System.Drawing.Point(286, 323);
this.groupTextEng.Name = "groupTextEng";
this.groupTextEng.Size = new System.Drawing.Size(375, 150);
this.groupTextEng.TabIndex = 6;
this.groupTextEng.TabStop = false;
this.groupTextEng.Text = "English Text";
//
// tbTextEng
//
this.tbTextEng.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tbTextEng.Location = new System.Drawing.Point(6, 19);
this.tbTextEng.Multiline = true;
this.tbTextEng.Name = "tbTextEng";
this.tbTextEng.ReadOnly = true;
this.tbTextEng.Size = new System.Drawing.Size(363, 125);
this.tbTextEng.TabIndex = 1;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.tbTextJap);
this.groupBox1.Location = new System.Drawing.Point(667, 323);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(375, 150);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Japanese Text";
//
// tbTextJap
//
this.tbTextJap.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tbTextJap.Location = new System.Drawing.Point(6, 19);
this.tbTextJap.Multiline = true;
this.tbTextJap.Name = "tbTextJap";
this.tbTextJap.ReadOnly = true;
this.tbTextJap.Size = new System.Drawing.Size(363, 125);
this.tbTextJap.TabIndex = 2;
this.tbTextJap.Text = "本作の主人公で、プラネテューヌの女神、パープルハー\r\nトの中(?)の人。天界での守護女神戦争で敗北したこ\r\nとにより、名前以外の一切の記憶がないが、それを疑い\r\n" +
"たくなる程の明るく前向きな性格をしている。";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.btnCoopyToClipboard);
this.groupBox2.Controls.Add(this.tbTextVie);
this.groupBox2.Location = new System.Drawing.Point(286, 479);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(375, 150);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Translated Text";
//
// btnCoopyToClipboard
//
this.btnCoopyToClipboard.BackgroundImage = global::NepTrans.Properties.Resources.CopyLongTextToClipboard_16x;
this.btnCoopyToClipboard.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.btnCoopyToClipboard.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
this.btnCoopyToClipboard.Location = new System.Drawing.Point(344, 119);
this.btnCoopyToClipboard.Name = "btnCoopyToClipboard";
this.btnCoopyToClipboard.Size = new System.Drawing.Size(25, 25);
this.btnCoopyToClipboard.TabIndex = 31;
this.btnCoopyToClipboard.UseVisualStyleBackColor = true;
this.btnCoopyToClipboard.Click += new System.EventHandler(this.btnCoopyToClipboard_Click);
//
// tbTextVie
//
this.tbTextVie.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tbTextVie.Location = new System.Drawing.Point(6, 19);
this.tbTextVie.Multiline = true;
this.tbTextVie.Name = "tbTextVie";
this.tbTextVie.Size = new System.Drawing.Size(363, 125);
this.tbTextVie.TabIndex = 0;
this.tbTextVie.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbTextVie_KeyDown);
//
// treeDirStruct
//
this.treeDirStruct.HideSelection = false;
this.treeDirStruct.HotTracking = true;
this.treeDirStruct.Location = new System.Drawing.Point(15, 67);
this.treeDirStruct.Name = "treeDirStruct";
this.treeDirStruct.Size = new System.Drawing.Size(265, 641);
this.treeDirStruct.TabIndex = 9;
this.treeDirStruct.DrawNode += new System.Windows.Forms.DrawTreeNodeEventHandler(this.treeDirStruct_DrawNode);
this.treeDirStruct.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeDirStruct_AfterSelect);
//
// btnSelectRootDir
//
this.btnSelectRootDir.Location = new System.Drawing.Point(974, 10);
this.btnSelectRootDir.Name = "btnSelectRootDir";
this.btnSelectRootDir.Size = new System.Drawing.Size(150, 23);
this.btnSelectRootDir.TabIndex = 10;
this.btnSelectRootDir.Text = "Select Directory";
this.btnSelectRootDir.UseVisualStyleBackColor = true;
this.btnSelectRootDir.Click += new System.EventHandler(this.btnSelectRootDir_Click);
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(673, 600);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(144, 23);
this.btnUpdate.TabIndex = 11;
this.btnUpdate.Text = "Apply This Record";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// btnSaveEntry
//
this.btnSaveEntry.Location = new System.Drawing.Point(1048, 394);
this.btnSaveEntry.Name = "btnSaveEntry";
this.btnSaveEntry.Size = new System.Drawing.Size(191, 23);
this.btnSaveEntry.TabIndex = 12;
this.btnSaveEntry.Text = "Save Current Entry";
this.btnSaveEntry.UseVisualStyleBackColor = true;
this.btnSaveEntry.Click += new System.EventHandler(this.btnSaveEntry_Click);
//
// pbOverall
//
this.pbOverall.Location = new System.Drawing.Point(286, 635);
this.pbOverall.Name = "pbOverall";
this.pbOverall.Size = new System.Drawing.Size(876, 15);
this.pbOverall.TabIndex = 13;
//
// pbGameScript
//
this.pbGameScript.Location = new System.Drawing.Point(286, 669);
this.pbGameScript.MinimumSize = new System.Drawing.Size(131, 15);
this.pbGameScript.Name = "pbGameScript";
this.pbGameScript.Size = new System.Drawing.Size(435, 15);
this.pbGameScript.TabIndex = 14;
//
// pbSystemScript
//
this.pbSystemScript.Location = new System.Drawing.Point(727, 669);
this.pbSystemScript.MinimumSize = new System.Drawing.Size(132, 15);
this.pbSystemScript.Name = "pbSystemScript";
this.pbSystemScript.Size = new System.Drawing.Size(435, 15);
this.pbSystemScript.TabIndex = 15;
//
// pbCurEntryStat
//
this.pbCurEntryStat.Location = new System.Drawing.Point(1048, 342);
this.pbCurEntryStat.Name = "pbCurEntryStat";
this.pbCurEntryStat.Size = new System.Drawing.Size(191, 15);
this.pbCurEntryStat.TabIndex = 17;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(1045, 360);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(71, 13);
this.label3.TabIndex = 18;
this.label3.Text = "Current Entry:";
//
// lblCurEntryStat
//
this.lblCurEntryStat.AutoSize = true;
this.lblCurEntryStat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblCurEntryStat.Location = new System.Drawing.Point(1122, 360);
this.lblCurEntryStat.Name = "lblCurEntryStat";
this.lblCurEntryStat.Size = new System.Drawing.Size(55, 13);
this.lblCurEntryStat.TabIndex = 19;
this.lblCurEntryStat.Text = "0/0 (0%)";
//
// lblOverallStat
//
this.lblOverallStat.AutoSize = true;
this.lblOverallStat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOverallStat.Location = new System.Drawing.Point(379, 653);
this.lblOverallStat.Name = "lblOverallStat";
this.lblOverallStat.Size = new System.Drawing.Size(55, 13);
this.lblOverallStat.TabIndex = 21;
this.lblOverallStat.Text = "0/0 (0%)";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(286, 653);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(87, 13);
this.label5.TabIndex = 20;
this.label5.Text = "Overall Progress:";
//
// lblGameScriptStat
//
this.lblGameScriptStat.AutoSize = true;
this.lblGameScriptStat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblGameScriptStat.Location = new System.Drawing.Point(362, 687);
this.lblGameScriptStat.Name = "lblGameScriptStat";
this.lblGameScriptStat.Size = new System.Drawing.Size(55, 13);
this.lblGameScriptStat.TabIndex = 23;
this.lblGameScriptStat.Text = "0/0 (0%)";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(286, 687);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(70, 13);
this.label7.TabIndex = 22;
this.label7.Text = "Dialog Script:";
//
// lblSystemScriptStat
//
this.lblSystemScriptStat.AutoSize = true;
this.lblSystemScriptStat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblSystemScriptStat.Location = new System.Drawing.Point(807, 687);
this.lblSystemScriptStat.Name = "lblSystemScriptStat";
this.lblSystemScriptStat.Size = new System.Drawing.Size(55, 13);
this.lblSystemScriptStat.TabIndex = 25;
this.lblSystemScriptStat.Text = "0/0 (0%)";
//
// lblSystemScriptHeader
//
this.lblSystemScriptHeader.AutoSize = true;
this.lblSystemScriptHeader.Location = new System.Drawing.Point(727, 687);
this.lblSystemScriptHeader.Name = "lblSystemScriptHeader";
this.lblSystemScriptHeader.Size = new System.Drawing.Size(74, 13);
this.lblSystemScriptHeader.TabIndex = 24;
this.lblSystemScriptHeader.Text = "System Script:";
//
// btnVerifyDirectory
//
this.btnVerifyDirectory.Enabled = false;
this.btnVerifyDirectory.Location = new System.Drawing.Point(93, 38);
this.btnVerifyDirectory.Name = "btnVerifyDirectory";
this.btnVerifyDirectory.Size = new System.Drawing.Size(150, 23);
this.btnVerifyDirectory.TabIndex = 26;
this.btnVerifyDirectory.Text = "Verify Directory Structure";
this.btnVerifyDirectory.UseVisualStyleBackColor = true;
//
// btSaveProj
//
this.btSaveProj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btSaveProj.ForeColor = System.Drawing.Color.Red;
this.btSaveProj.Location = new System.Drawing.Point(1048, 600);
this.btSaveProj.Name = "btSaveProj";
this.btSaveProj.Size = new System.Drawing.Size(191, 23);
this.btSaveProj.TabIndex = 27;
this.btSaveProj.Text = "Save Project";
this.btSaveProj.UseVisualStyleBackColor = true;
this.btSaveProj.Click += new System.EventHandler(this.btSaveProj_Click);
//
// btnKeepOrg
//
this.btnKeepOrg.ForeColor = System.Drawing.Color.Red;
this.btnKeepOrg.Location = new System.Drawing.Point(673, 498);
this.btnKeepOrg.Name = "btnKeepOrg";
this.btnKeepOrg.Size = new System.Drawing.Size(144, 23);
this.btnKeepOrg.TabIndex = 28;
this.btnKeepOrg.Text = "Keep Original";
this.btnKeepOrg.UseVisualStyleBackColor = true;
this.btnKeepOrg.Click += new System.EventHandler(this.btnKeepOrg_Click);
//
// btnSummaryReport
//
this.btnSummaryReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSummaryReport.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
this.btnSummaryReport.Location = new System.Drawing.Point(1048, 571);
this.btnSummaryReport.Name = "btnSummaryReport";
this.btnSummaryReport.Size = new System.Drawing.Size(191, 23);
this.btnSummaryReport.TabIndex = 29;
this.btnSummaryReport.Text = "Summary";
this.btnSummaryReport.UseVisualStyleBackColor = true;
this.btnSummaryReport.Click += new System.EventHandler(this.btnSummaryReport_Click);
//
// btnAutofill
//
this.btnAutofill.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAutofill.ForeColor = System.Drawing.Color.Red;
this.btnAutofill.Location = new System.Drawing.Point(1048, 501);
this.btnAutofill.Name = "btnAutofill";
this.btnAutofill.Size = new System.Drawing.Size(191, 23);
this.btnAutofill.TabIndex = 30;
this.btnAutofill.Text = "Autofill Unchanged Records";
this.btnAutofill.UseVisualStyleBackColor = true;
this.btnAutofill.Click += new System.EventHandler(this.btnAutofill_Click);
//
// cbAppendRecordInfo
//
this.cbAppendRecordInfo.AutoSize = true;
this.cbAppendRecordInfo.Location = new System.Drawing.Point(673, 527);
this.cbAppendRecordInfo.Name = "cbAppendRecordInfo";
this.cbAppendRecordInfo.Size = new System.Drawing.Size(122, 17);
this.cbAppendRecordInfo.TabIndex = 31;
this.cbAppendRecordInfo.Text = "Append Record Info";
this.cbAppendRecordInfo.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1280, 720);
this.Controls.Add(this.cbAppendRecordInfo);
this.Controls.Add(this.btnAutofill);
this.Controls.Add(this.btnSummaryReport);
this.Controls.Add(this.btnKeepOrg);
this.Controls.Add(this.btSaveProj);
this.Controls.Add(this.treeDirStruct);
this.Controls.Add(this.btnVerifyDirectory);
this.Controls.Add(this.lblSystemScriptStat);
this.Controls.Add(this.lblSystemScriptHeader);
this.Controls.Add(this.lblGameScriptStat);
this.Controls.Add(this.label7);
this.Controls.Add(this.lblOverallStat);
this.Controls.Add(this.label5);
this.Controls.Add(this.lblCurEntryStat);
this.Controls.Add(this.label3);
this.Controls.Add(this.pbCurEntryStat);
this.Controls.Add(this.pbSystemScript);
this.Controls.Add(this.pbGameScript);
this.Controls.Add(this.pbOverall);
this.Controls.Add(this.btnSaveEntry);
this.Controls.Add(this.btnUpdate);
this.Controls.Add(this.btnSelectRootDir);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.groupTextEng);
this.Controls.Add(this.label1);
this.Controls.Add(this.checkUseCurrentDir);
this.Controls.Add(this.dgvWorkspace);
this.Controls.Add(this.tbRootDirectory);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.KeyPreview = true;
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
((System.ComponentModel.ISupportInitialize)(this.dgvWorkspace)).EndInit();
this.groupTextEng.ResumeLayout(false);
this.groupTextEng.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbRootDirectory;
private System.Windows.Forms.DataGridView dgvWorkspace;
private System.Windows.Forms.CheckBox checkUseCurrentDir;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupTextEng;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.TextBox tbTextVie;
private System.Windows.Forms.TreeView treeDirStruct;
private System.Windows.Forms.Button btnSelectRootDir;
private System.Windows.Forms.TextBox tbTextEng;
private System.Windows.Forms.TextBox tbTextJap;
private System.Windows.Forms.Button btnUpdate;
private System.Windows.Forms.Button btnSaveEntry;
private System.Windows.Forms.ProgressBar pbOverall;
private System.Windows.Forms.ProgressBar pbGameScript;
private System.Windows.Forms.ProgressBar pbSystemScript;
private System.Windows.Forms.ProgressBar pbCurEntryStat;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label lblCurEntryStat;
private System.Windows.Forms.Label lblOverallStat;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label lblGameScriptStat;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label lblSystemScriptStat;
private System.Windows.Forms.Label lblSystemScriptHeader;
private System.Windows.Forms.Button btnVerifyDirectory;
private System.Windows.Forms.Button btSaveProj;
private System.Windows.Forms.DataGridViewTextBoxColumn colId;
private System.Windows.Forms.DataGridViewTextBoxColumn colTextEng;
private System.Windows.Forms.DataGridViewTextBoxColumn colTextJap;
private System.Windows.Forms.DataGridViewTextBoxColumn colTextVie;
private System.Windows.Forms.Button btnKeepOrg;
private System.Windows.Forms.Button btnSummaryReport;
private System.Windows.Forms.Button btnAutofill;
private System.Windows.Forms.Button btnCoopyToClipboard;
private System.Windows.Forms.CheckBox cbAppendRecordInfo;
}
}