forked from wmjordan/PDFPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
760 lines (753 loc) · 32.4 KB
/
MainForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
namespace PDFPatcher
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose (bool disposing) {
if (disposing && (components != null)) {
components.Dispose ();
}
base.Dispose (disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent () {
this.components = new System.ComponentModel.Container();
System.Windows.Forms.ToolStripMenuItem _Select;
System.Windows.Forms.ToolStripMenuItem _Copy;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
System.Windows.Forms.ToolStripMenuItem _Delete;
System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
System.Windows.Forms.ToolStripMenuItem _SelectAllPdfFiles;
System.Windows.Forms.ToolStripMenuItem _SelectAllImages;
System.Windows.Forms.ToolStripMenuItem _SelectAllFolders;
System.Windows.Forms.ToolStripSeparator _ItemTypeSeparator;
System.Windows.Forms.ToolStripMenuItem _SelectAll;
System.Windows.Forms.ToolStripMenuItem _InvertSelect;
System.Windows.Forms.ToolStripMenuItem _SelectNone;
System.Windows.Forms.ToolStripMenuItem _ToolBox;
System.Windows.Forms.ToolStripMenuItem toolStripMenuItem23;
System.Windows.Forms.ToolStripMenuItem _Patcher;
System.Windows.Forms.ToolStripMenuItem _Merger;
System.Windows.Forms.ToolStripMenuItem _Rename;
System.Windows.Forms.ToolStripMenuItem _OcrImages;
System.Windows.Forms.ToolStripMenuItem _GenerateBookmark;
System.Windows.Forms.ToolStripMenuItem _InfoExchanger;
System.Windows.Forms.ToolStripMenuItem _Imaging;
System.Windows.Forms.ToolStripMenuItem _Extract;
System.Windows.Forms.ToolStripMenuItem _ExtractImages;
System.Windows.Forms.ToolStripMenuItem _RenderPages;
System.Windows.Forms.ToolStripMenuItem _Explorer;
System.Windows.Forms.ToolStripMenuItem _ExportInfoFile;
System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
System.Windows.Forms.ToolStripMenuItem _ShowGeneralToolbar;
System.Windows.Forms.ToolStripMenuItem _CustomizeToolbarCommand;
System.Windows.Forms.ToolStripMenuItem _LogWindow;
System.Windows.Forms.ToolStripMenuItem _Help;
System.Windows.Forms.ToolStripMenuItem _CreateShortcut;
System.Windows.Forms.ToolStripMenuItem _CheckUpdate;
System.Windows.Forms.ToolStripMenuItem _VisitHomePage;
System.Windows.Forms.ToolStripMenuItem _About;
System.Windows.Forms.ToolStripMenuItem _Open;
System.Windows.Forms.ToolStripMenuItem dummyToolStripMenuItem;
System.Windows.Forms.ToolStripMenuItem _ImportBookmark;
System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
System.Windows.Forms.ToolStripMenuItem _Action;
System.Windows.Forms.ToolStripMenuItem _SaveBookmark;
System.Windows.Forms.ToolStripMenuItem _SaveAsInfoFile;
System.Windows.Forms.ToolStripSeparator _configSeparator;
System.Windows.Forms.ToolStripMenuItem _AppOptions;
System.Windows.Forms.ToolStripMenuItem _RestoreOptions;
System.Windows.Forms.ToolStripMenuItem _SaveOptions;
System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
System.Windows.Forms.ToolStripMenuItem _Exit;
System.Windows.Forms.ToolStripMenuItem _Close;
System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
System.Windows.Forms.ToolStripMenuItem _Options;
System.Windows.Forms.ToolStripButton _CustomizeToolbar;
System.Windows.Forms.ToolStripMenuItem _Properties;
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this._ToolTip = new System.Windows.Forms.ToolTip(this.components);
this._SaveConfigDialog = new System.Windows.Forms.SaveFileDialog();
this._OpenConfigDialog = new System.Windows.Forms.OpenFileDialog();
this._MainMenu = new System.Windows.Forms.MenuStrip();
this._File = new System.Windows.Forms.ToolStripMenuItem();
this._RecentFiles = new System.Windows.Forms.ToolStripMenuItem();
this._ResetOptions = new System.Windows.Forms.ToolStripMenuItem();
this._OpenPdfDialog = new System.Windows.Forms.OpenFileDialog();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this._MainStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this._GeneralToolbar = new System.Windows.Forms.ToolStrip();
this._FunctionContainer = new System.Windows.Forms.CustomTabControl();
_Select = new System.Windows.Forms.ToolStripMenuItem();
_Copy = new System.Windows.Forms.ToolStripMenuItem();
_Delete = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
_SelectAllPdfFiles = new System.Windows.Forms.ToolStripMenuItem();
_SelectAllImages = new System.Windows.Forms.ToolStripMenuItem();
_SelectAllFolders = new System.Windows.Forms.ToolStripMenuItem();
_ItemTypeSeparator = new System.Windows.Forms.ToolStripSeparator();
_SelectAll = new System.Windows.Forms.ToolStripMenuItem();
_InvertSelect = new System.Windows.Forms.ToolStripMenuItem();
_SelectNone = new System.Windows.Forms.ToolStripMenuItem();
_ToolBox = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem23 = new System.Windows.Forms.ToolStripMenuItem();
_Patcher = new System.Windows.Forms.ToolStripMenuItem();
_Merger = new System.Windows.Forms.ToolStripMenuItem();
_Rename = new System.Windows.Forms.ToolStripMenuItem();
_OcrImages = new System.Windows.Forms.ToolStripMenuItem();
_GenerateBookmark = new System.Windows.Forms.ToolStripMenuItem();
_InfoExchanger = new System.Windows.Forms.ToolStripMenuItem();
_Imaging = new System.Windows.Forms.ToolStripMenuItem();
_Extract = new System.Windows.Forms.ToolStripMenuItem();
_ExtractImages = new System.Windows.Forms.ToolStripMenuItem();
_RenderPages = new System.Windows.Forms.ToolStripMenuItem();
_Explorer = new System.Windows.Forms.ToolStripMenuItem();
_ExportInfoFile = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
_ShowGeneralToolbar = new System.Windows.Forms.ToolStripMenuItem();
_CustomizeToolbarCommand = new System.Windows.Forms.ToolStripMenuItem();
_LogWindow = new System.Windows.Forms.ToolStripMenuItem();
_Help = new System.Windows.Forms.ToolStripMenuItem();
_CreateShortcut = new System.Windows.Forms.ToolStripMenuItem();
_CheckUpdate = new System.Windows.Forms.ToolStripMenuItem();
_VisitHomePage = new System.Windows.Forms.ToolStripMenuItem();
_About = new System.Windows.Forms.ToolStripMenuItem();
_Open = new System.Windows.Forms.ToolStripMenuItem();
dummyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
_ImportBookmark = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
_Action = new System.Windows.Forms.ToolStripMenuItem();
_SaveBookmark = new System.Windows.Forms.ToolStripMenuItem();
_SaveAsInfoFile = new System.Windows.Forms.ToolStripMenuItem();
_configSeparator = new System.Windows.Forms.ToolStripSeparator();
_AppOptions = new System.Windows.Forms.ToolStripMenuItem();
_RestoreOptions = new System.Windows.Forms.ToolStripMenuItem();
_SaveOptions = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
_Exit = new System.Windows.Forms.ToolStripMenuItem();
_Close = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
_Options = new System.Windows.Forms.ToolStripMenuItem();
_CustomizeToolbar = new System.Windows.Forms.ToolStripButton();
_Properties = new System.Windows.Forms.ToolStripMenuItem();
this._MainMenu.SuspendLayout();
this.statusStrip1.SuspendLayout();
this._GeneralToolbar.SuspendLayout();
this.SuspendLayout();
//
// _Select
//
_Select.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
_Select.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
_Copy,
_Delete,
toolStripSeparator3,
_SelectAllPdfFiles,
_SelectAllImages,
_SelectAllFolders,
_ItemTypeSeparator,
_SelectAll,
_InvertSelect,
_SelectNone});
_Select.Image = ((System.Drawing.Image)(resources.GetObject("_Select.Image")));
_Select.ImageTransparentColor = System.Drawing.Color.Magenta;
_Select.Name = "_Select";
_Select.Size = new System.Drawing.Size(59, 24);
_Select.Text = "选择(&Z)";
_Select.DropDownOpening += new System.EventHandler(this.MenuOpening);
_Select.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// _Copy
//
_Copy.Image = ((System.Drawing.Image)(resources.GetObject("_Copy.Image")));
_Copy.Name = "_Copy";
_Copy.ShortcutKeyDisplayString = "Ctrl+C";
_Copy.Size = new System.Drawing.Size(181, 22);
_Copy.Text = "复制选中项";
//
// _Delete
//
_Delete.Image = ((System.Drawing.Image)(resources.GetObject("_Delete.Image")));
_Delete.ImageTransparentColor = System.Drawing.Color.Magenta;
_Delete.Name = "_Delete";
_Delete.ShortcutKeyDisplayString = "Delete";
_Delete.Size = new System.Drawing.Size(185, 26);
_Delete.Text = "删除选中项";
//
// toolStripSeparator3
//
toolStripSeparator3.Name = "toolStripSeparator3";
toolStripSeparator3.Size = new System.Drawing.Size(182, 6);
//
// _SelectAllPdfFiles
//
_SelectAllPdfFiles.Image = ((System.Drawing.Image)(resources.GetObject("_SelectAllPdfFiles.Image")));
_SelectAllPdfFiles.Name = "_SelectAllPdfFiles";
_SelectAllPdfFiles.Size = new System.Drawing.Size(185, 26);
_SelectAllPdfFiles.Text = "选中所有 PDF 文件";
//
// _SelectAllImages
//
_SelectAllImages.Image = ((System.Drawing.Image)(resources.GetObject("_SelectAllImages.Image")));
_SelectAllImages.Name = "_SelectAllImages";
_SelectAllImages.Size = new System.Drawing.Size(185, 26);
_SelectAllImages.Text = "选中所有图片";
//
// _SelectAllFolders
//
_SelectAllFolders.Image = ((System.Drawing.Image)(resources.GetObject("_SelectAllFolders.Image")));
_SelectAllFolders.Name = "_SelectAllFolders";
_SelectAllFolders.Size = new System.Drawing.Size(185, 26);
_SelectAllFolders.Text = "选中所有文件夹";
//
// _ItemTypeSeparator
//
_ItemTypeSeparator.Name = "_ItemTypeSeparator";
_ItemTypeSeparator.Size = new System.Drawing.Size(182, 6);
//
// _SelectAll
//
_SelectAll.Image = ((System.Drawing.Image)(resources.GetObject("_SelectAll.Image")));
_SelectAll.Name = "_SelectAll";
_SelectAll.ShortcutKeyDisplayString = "Ctrl+A";
_SelectAll.Size = new System.Drawing.Size(185, 26);
_SelectAll.Text = "全部选中";
//
// _InvertSelect
//
_InvertSelect.Name = "_InvertSelect";
_InvertSelect.Size = new System.Drawing.Size(185, 26);
_InvertSelect.Text = "反转选择";
//
// _SelectNone
//
_SelectNone.Name = "_SelectNone";
_SelectNone.Size = new System.Drawing.Size(185, 26);
_SelectNone.Text = "取消选择";
//
// _ToolBox
//
_ToolBox.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
_ToolBox.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
toolStripMenuItem23,
_Imaging,
_Explorer,
_ExportInfoFile,
toolStripSeparator5,
_ShowGeneralToolbar,
_CustomizeToolbarCommand,
_LogWindow});
_ToolBox.Image = ((System.Drawing.Image)(resources.GetObject("_ToolBox.Image")));
_ToolBox.ImageTransparentColor = System.Drawing.Color.Magenta;
_ToolBox.Name = "_ToolBox";
_ToolBox.Size = new System.Drawing.Size(73, 24);
_ToolBox.Text = "工具箱(&G)";
_ToolBox.DropDownOpening += new System.EventHandler(this.MenuOpening);
_ToolBox.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// toolStripMenuItem23
//
toolStripMenuItem23.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
_Patcher,
_Merger,
_Rename,
_OcrImages,
_GenerateBookmark,
_InfoExchanger});
toolStripMenuItem23.Name = "toolStripMenuItem23";
toolStripMenuItem23.Size = new System.Drawing.Size(202, 26);
toolStripMenuItem23.Text = "处理PDF文件(&C)";
toolStripMenuItem23.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// _Patcher
//
_Patcher.Image = ((System.Drawing.Image)(resources.GetObject("_Patcher.Image")));
_Patcher.Name = "_Patcher";
_Patcher.Size = new System.Drawing.Size(233, 22);
_Patcher.Tag = "Patcher";
_Patcher.Text = "批量修改 &PDF 文件...";
//
// _Merger
//
_Merger.Image = ((System.Drawing.Image)(resources.GetObject("_Merger.Image")));
_Merger.Name = "_Merger";
_Merger.Size = new System.Drawing.Size(233, 22);
_Merger.Tag = "Merger";
_Merger.Text = "合并 P&DF 和图片文件...";
//
// _Rename
//
_Rename.Image = ((System.Drawing.Image)(resources.GetObject("_Rename.Image")));
_Rename.Name = "_Rename";
_Rename.Size = new System.Drawing.Size(233, 22);
_Rename.Tag = "Rename";
_Rename.Text = "批量重命名 PD&F 文件...";
_Rename.ToolTipText = "根据 PDF 文档的属性重命名 PDF 文件";
//
// _OcrImages
//
_OcrImages.Image = ((System.Drawing.Image)(resources.GetObject("_OcrImages.Image")));
_OcrImages.Name = "_OcrImages";
_OcrImages.Size = new System.Drawing.Size(233, 22);
_OcrImages.Tag = "Ocr";
_OcrImages.Text = "识别图像文本(&S)...";
//
// _GenerateBookmark
//
_GenerateBookmark.Image = global::PDFPatcher.Properties.Resources.AutoBookmark;
_GenerateBookmark.Name = "_GenerateBookmark";
_GenerateBookmark.Size = new System.Drawing.Size(233, 22);
_GenerateBookmark.Tag = "BookmarkGenerator";
_GenerateBookmark.Text = "自动生成书签(&Z)...";
//
// _InfoExchanger
//
_InfoExchanger.Image = ((System.Drawing.Image)(resources.GetObject("_InfoExchanger.Image")));
_InfoExchanger.Name = "_InfoExchanger";
_InfoExchanger.Size = new System.Drawing.Size(233, 22);
_InfoExchanger.Tag = "InfoExchanger";
_InfoExchanger.Text = "批量导出或导入信息文件(&X)...";
_InfoExchanger.Visible = false;
//
// _Imaging
//
_Imaging.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
_Extract,
_ExtractImages,
_RenderPages});
_Imaging.Name = "_Imaging";
_Imaging.Size = new System.Drawing.Size(202, 26);
_Imaging.Text = "提取文档内容(&T)";
_Imaging.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// _Extract
//
_Extract.Image = ((System.Drawing.Image)(resources.GetObject("_Extract.Image")));
_Extract.Name = "_Extract";
_Extract.Size = new System.Drawing.Size(208, 22);
_Extract.Tag = "ExtractPages";
_Extract.Text = "提取页面或拆分文档(&Y)...";
//
// _ExtractImages
//
_ExtractImages.Image = ((System.Drawing.Image)(resources.GetObject("_ExtractImages.Image")));
_ExtractImages.Name = "_ExtractImages";
_ExtractImages.Size = new System.Drawing.Size(208, 22);
_ExtractImages.Tag = "ExtractImages";
_ExtractImages.Text = "提取图片(&T)...";
//
// _RenderPages
//
_RenderPages.Image = global::PDFPatcher.Properties.Resources.RenderDocument;
_RenderPages.Name = "_RenderPages";
_RenderPages.Size = new System.Drawing.Size(208, 22);
_RenderPages.Tag = "RenderPages";
_RenderPages.Text = "转换页面为图片(&Z)...";
//
// _Explorer
//
_Explorer.Image = ((System.Drawing.Image)(resources.GetObject("_Explorer.Image")));
_Explorer.Name = "_Explorer";
_Explorer.Size = new System.Drawing.Size(202, 26);
_Explorer.Tag = "Inspector";
_Explorer.Text = "文档结构探查器(&W)...";
//
// _ExportInfoFile
//
_ExportInfoFile.Image = ((System.Drawing.Image)(resources.GetObject("_ExportInfoFile.Image")));
_ExportInfoFile.Name = "_ExportInfoFile";
_ExportInfoFile.Size = new System.Drawing.Size(202, 26);
_ExportInfoFile.Tag = "InfoExchanger";
_ExportInfoFile.Text = "导出导入信息文件(&D)...";
//
// toolStripSeparator5
//
toolStripSeparator5.Name = "toolStripSeparator5";
toolStripSeparator5.Size = new System.Drawing.Size(199, 6);
//
// _ShowGeneralToolbar
//
_ShowGeneralToolbar.Name = "_ShowGeneralToolbar";
_ShowGeneralToolbar.Size = new System.Drawing.Size(202, 26);
_ShowGeneralToolbar.Text = "显示常用工具栏(&G)";
//
// _CustomizeToolbarCommand
//
_CustomizeToolbarCommand.Image = ((System.Drawing.Image)(resources.GetObject("_CustomizeToolbarCommand.Image")));
_CustomizeToolbarCommand.Name = "_CustomizeToolbarCommand";
_CustomizeToolbarCommand.Size = new System.Drawing.Size(202, 26);
_CustomizeToolbarCommand.Text = "自定义常用工具栏(&Z)...";
//
// _LogWindow
//
_LogWindow.Image = ((System.Drawing.Image)(resources.GetObject("_LogWindow.Image")));
_LogWindow.Name = "_LogWindow";
_LogWindow.Size = new System.Drawing.Size(202, 26);
_LogWindow.Tag = "";
_LogWindow.Text = "程序输出信息(&S)...";
//
// _Help
//
_Help.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
_CreateShortcut,
this.toolStripSeparator14,
_CheckUpdate,
_VisitHomePage,
_About});
_Help.Name = "_Help";
_Help.Size = new System.Drawing.Size(60, 24);
_Help.Text = "帮助(&B)";
_Help.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// _CreateShortcut
//
_CreateShortcut.Image = ((System.Drawing.Image)(resources.GetObject("_CreateShortcut.Image")));
_CreateShortcut.Name = "_CreateShortcut";
_CreateShortcut.Size = new System.Drawing.Size(202, 26);
_CreateShortcut.Text = "创建桌面快捷方式(&C)";
//
// toolStripSeparator14
//
this.toolStripSeparator14.Name = "toolStripSeparator14";
this.toolStripSeparator14.Size = new System.Drawing.Size(199, 6);
//
// _CheckUpdate
//
_CheckUpdate.Image = ((System.Drawing.Image)(resources.GetObject("_CheckUpdate.Image")));
_CheckUpdate.Name = "_CheckUpdate";
_CheckUpdate.Size = new System.Drawing.Size(202, 26);
_CheckUpdate.Text = "检查新的版本(&X)...";
//
// _VisitHomePage
//
_VisitHomePage.Image = ((System.Drawing.Image)(resources.GetObject("_VisitHomePage.Image")));
_VisitHomePage.Name = "_VisitHomePage";
_VisitHomePage.Size = new System.Drawing.Size(202, 26);
_VisitHomePage.Text = "访问程序主页(&Z)...";
//
// _About
//
_About.Image = ((System.Drawing.Image)(resources.GetObject("_About.Image")));
_About.Name = "_About";
_About.Size = new System.Drawing.Size(202, 26);
_About.Tag = "About";
_About.Text = "关于本程序及作者(&G)...";
//
// _Open
//
_Open.Image = ((System.Drawing.Image)(resources.GetObject("_Open.Image")));
_Open.Name = "_Open";
_Open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
_Open.Size = new System.Drawing.Size(227, 26);
_Open.Text = "打开文件...";
//
// dummyToolStripMenuItem
//
dummyToolStripMenuItem.Enabled = false;
dummyToolStripMenuItem.Name = "dummyToolStripMenuItem";
dummyToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
dummyToolStripMenuItem.Text = "最近打开的文件列表";
//
// _ImportBookmark
//
_ImportBookmark.Image = ((System.Drawing.Image)(resources.GetObject("_ImportBookmark.Image")));
_ImportBookmark.Name = "_ImportBookmark";
_ImportBookmark.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
_ImportBookmark.Size = new System.Drawing.Size(227, 26);
_ImportBookmark.Text = "导入书签(&D)...";
_ImportBookmark.ToolTipText = "从其它文件导入书签到当前文档";
//
// toolStripSeparator2
//
toolStripSeparator2.Name = "toolStripSeparator2";
toolStripSeparator2.Size = new System.Drawing.Size(224, 6);
//
// _Action
//
_Action.Image = global::PDFPatcher.Properties.Resources.Save;
_Action.Name = "_Action";
_Action.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
_Action.Size = new System.Drawing.Size(227, 26);
_Action.Text = "保存 PDF 文件(&C)...";
//
// _SaveBookmark
//
_SaveBookmark.Image = global::PDFPatcher.Properties.Resources.ExportInfoFile;
_SaveBookmark.Name = "_SaveBookmark";
_SaveBookmark.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
_SaveBookmark.Size = new System.Drawing.Size(227, 26);
_SaveBookmark.Text = "保存书签文件(&Q)";
_SaveBookmark.ToolTipText = "将书签保存为 XML 格式的信息文件,可用于迁移书签";
//
// _SaveAsInfoFile
//
_SaveAsInfoFile.Image = ((System.Drawing.Image)(resources.GetObject("_SaveAsInfoFile.Image")));
_SaveAsInfoFile.Name = "_SaveAsInfoFile";
_SaveAsInfoFile.Size = new System.Drawing.Size(227, 26);
_SaveAsInfoFile.Text = "换名保存书签文件(&H)...";
//
// _configSeparator
//
_configSeparator.Name = "_configSeparator";
_configSeparator.Size = new System.Drawing.Size(224, 6);
//
// _AppOptions
//
_AppOptions.Image = ((System.Drawing.Image)(resources.GetObject("_AppOptions.Image")));
_AppOptions.Name = "_AppOptions";
_AppOptions.Size = new System.Drawing.Size(227, 26);
_AppOptions.Tag = "Options";
_AppOptions.Text = "程序配置(&P)...";
//
// _RestoreOptions
//
_RestoreOptions.Name = "_RestoreOptions";
_RestoreOptions.Size = new System.Drawing.Size(227, 26);
_RestoreOptions.Text = "加载程序配置(&J)...";
//
// _SaveOptions
//
_SaveOptions.Name = "_SaveOptions";
_SaveOptions.Size = new System.Drawing.Size(227, 26);
_SaveOptions.Text = "保存程序配置(&B)...";
//
// toolStripSeparator11
//
toolStripSeparator11.Name = "toolStripSeparator11";
toolStripSeparator11.Size = new System.Drawing.Size(224, 6);
//
// _Exit
//
_Exit.Name = "_Exit";
_Exit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
_Exit.Size = new System.Drawing.Size(227, 26);
_Exit.Text = "退出程序(&T)";
//
// _Close
//
_Close.Image = global::PDFPatcher.Properties.Resources.Close;
_Close.Name = "_Close";
_Close.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4)));
_Close.Size = new System.Drawing.Size(227, 26);
_Close.Text = "关闭当前功能(&G)";
//
// toolStripSeparator1
//
toolStripSeparator1.Name = "toolStripSeparator1";
toolStripSeparator1.Size = new System.Drawing.Size(224, 6);
//
// _Options
//
_Options.Image = ((System.Drawing.Image)(resources.GetObject("_Options.Image")));
_Options.Name = "_Options";
_Options.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G)));
_Options.Size = new System.Drawing.Size(227, 26);
_Options.Tag = "PatcherOptions";
_Options.Text = "功能设置(&S)...";
//
// _CustomizeToolbar
//
_CustomizeToolbar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
_CustomizeToolbar.Image = ((System.Drawing.Image)(resources.GetObject("_CustomizeToolbar.Image")));
_CustomizeToolbar.ImageTransparentColor = System.Drawing.Color.Magenta;
_CustomizeToolbar.Name = "_CustomizeToolbar";
_CustomizeToolbar.Size = new System.Drawing.Size(24, 24);
_CustomizeToolbar.Text = "修改常用工具栏按钮";
//
// _Properties
//
_Properties.Image = global::PDFPatcher.Properties.Resources.Property;
_Properties.Name = "_Properties";
_Properties.Size = new System.Drawing.Size(227, 26);
_Properties.Text = "文档属性(&X)...";
_Properties.ToolTipText = "查看并编辑当前文档的元数据属性";
//
// _ToolTip
//
this._ToolTip.IsBalloon = true;
this._ToolTip.ShowAlways = true;
//
// _SaveConfigDialog
//
this._SaveConfigDialog.DefaultExt = "json";
this._SaveConfigDialog.Title = "保存应用程序配置信息";
//
// _OpenConfigDialog
//
this._OpenConfigDialog.DefaultExt = "json";
this._OpenConfigDialog.Title = "打开应用程序配置文件";
//
// _MainMenu
//
this._MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this._File,
_ToolBox,
_Select,
_Help});
this._MainMenu.Location = new System.Drawing.Point(0, 0);
this._MainMenu.Name = "_MainMenu";
this._MainMenu.Padding = new System.Windows.Forms.Padding(1, 0, 0, 0);
this._MainMenu.Size = new System.Drawing.Size(604, 24);
this._MainMenu.TabIndex = 0;
//
// _File
//
this._File.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this._File.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
_Open,
this._RecentFiles,
_ImportBookmark,
toolStripSeparator1,
_Close,
toolStripSeparator2,
_Action,
_SaveBookmark,
_SaveAsInfoFile,
_configSeparator,
_Properties,
_Options,
this._ResetOptions,
_AppOptions,
_RestoreOptions,
_SaveOptions,
toolStripSeparator11,
_Exit});
this._File.Image = ((System.Drawing.Image)(resources.GetObject("_File.Image")));
this._File.ImageTransparentColor = System.Drawing.Color.Magenta;
this._File.Name = "_File";
this._File.Size = new System.Drawing.Size(64, 24);
this._File.Text = "文件(&W)";
this._File.DropDownOpening += new System.EventHandler(this.MenuOpening);
this._File.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// _RecentFiles
//
this._RecentFiles.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
dummyToolStripMenuItem});
this._RecentFiles.Name = "_RecentFiles";
this._RecentFiles.Size = new System.Drawing.Size(227, 26);
this._RecentFiles.Text = "最近打开的文件";
this._RecentFiles.DropDownOpening += new System.EventHandler(this.RecentFileMenuOpening);
this._RecentFiles.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuCommand);
//
// _ResetOptions
//
this._ResetOptions.Image = ((System.Drawing.Image)(resources.GetObject("_ResetOptions.Image")));
this._ResetOptions.Name = "_ResetOptions";
this._ResetOptions.Size = new System.Drawing.Size(227, 26);
this._ResetOptions.Text = "重置当前功能(&Z)...";
//
// _OpenPdfDialog
//
this._OpenPdfDialog.Title = "请选择需要打开的 PDF 文档";
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this._MainStatusLabel});
this.statusStrip1.Location = new System.Drawing.Point(0, 453);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 1, 0);
this.statusStrip1.Size = new System.Drawing.Size(604, 22);
this.statusStrip1.TabIndex = 3;
//
// _MainStatusLabel
//
this._MainStatusLabel.Name = "_MainStatusLabel";
this._MainStatusLabel.Size = new System.Drawing.Size(0, 0);
//
// _GeneralToolbar
//
this._GeneralToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
_CustomizeToolbar});
this._GeneralToolbar.Location = new System.Drawing.Point(0, 24);
this._GeneralToolbar.Name = "_GeneralToolbar";
this._GeneralToolbar.Padding = new System.Windows.Forms.Padding(0);
this._GeneralToolbar.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this._GeneralToolbar.Size = new System.Drawing.Size(604, 27);
this._GeneralToolbar.TabIndex = 1;
//
// _FunctionContainer
//
this._FunctionContainer.DisplayStyle = System.Windows.Forms.TabStyle.IE8;
//
//
//
this._FunctionContainer.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
this._FunctionContainer.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
this._FunctionContainer.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
this._FunctionContainer.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
this._FunctionContainer.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.Red;
this._FunctionContainer.DisplayStyleProvider.FocusTrack = false;
this._FunctionContainer.DisplayStyleProvider.HotTrack = true;
this._FunctionContainer.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this._FunctionContainer.DisplayStyleProvider.Opacity = 1F;
this._FunctionContainer.DisplayStyleProvider.Overlap = 0;
this._FunctionContainer.DisplayStyleProvider.Padding = new System.Drawing.Point(6, 5);
this._FunctionContainer.DisplayStyleProvider.Radius = 3;
this._FunctionContainer.DisplayStyleProvider.SelectedTextStyle = System.Drawing.FontStyle.Regular;
this._FunctionContainer.DisplayStyleProvider.ShowTabCloser = true;
this._FunctionContainer.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
this._FunctionContainer.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
this._FunctionContainer.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
this._FunctionContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this._FunctionContainer.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
this._FunctionContainer.HotTrack = true;
this._FunctionContainer.Location = new System.Drawing.Point(0, 51);
this._FunctionContainer.Margin = new System.Windows.Forms.Padding(0, 1, 0, 1);
this._FunctionContainer.Name = "_FunctionContainer";
this._FunctionContainer.SelectedIndex = 0;
this._FunctionContainer.Size = new System.Drawing.Size(604, 402);
this._FunctionContainer.TabIndex = 2;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(604, 475);
this.Controls.Add(this._FunctionContainer);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this._GeneralToolbar);
this.Controls.Add(this._MainMenu);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this._MainMenu;
this.Margin = new System.Windows.Forms.Padding(0, 1, 0, 1);
this.Name = "MainForm";
this.Text = "PDF 补丁丁";
this._MainMenu.ResumeLayout(false);
this._MainMenu.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this._GeneralToolbar.ResumeLayout(false);
this._GeneralToolbar.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolTip _ToolTip;
private System.Windows.Forms.SaveFileDialog _SaveConfigDialog;
private System.Windows.Forms.OpenFileDialog _OpenConfigDialog;
private System.Windows.Forms.MenuStrip _MainMenu;
private System.Windows.Forms.ToolStripMenuItem _File;
private System.Windows.Forms.ToolStripMenuItem _RecentFiles;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
private System.Windows.Forms.OpenFileDialog _OpenPdfDialog;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripMenuItem _ResetOptions;
private System.Windows.Forms.ToolStrip _GeneralToolbar;
private System.Windows.Forms.CustomTabControl _FunctionContainer;
private System.Windows.Forms.ToolStripStatusLabel _MainStatusLabel;
}
}