forked from sunminghong/MEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmMain.Designer.cs
1023 lines (1015 loc) · 64.4 KB
/
frmMain.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
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.Windows.Forms.Integration;
namespace MEditor
{
partial class frmMain: MRU.IMRUClient
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.字体OToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.字体颜色ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.新建NToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.打开OToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.保存SToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.保存所有ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.另存为AToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关闭ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关闭所有ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.打印预览VToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.最近打开的文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
this.退出XToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.新建NToolStripButton = new System.Windows.Forms.ToolStripButton();
this.打开OToolStripButton = new System.Windows.Forms.ToolStripButton();
this.保存SToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.剪切UToolStripButton = new System.Windows.Forms.ToolStripButton();
this.复制CToolStripButton = new System.Windows.Forms.ToolStripButton();
this.粘贴PToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.撤销toolStripButton5 = new System.Windows.Forms.ToolStripButton();
this.重做toolStripButton6 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.字体颜色toolStripButton11 = new System.Windows.Forms.ToolStripButton();
this.字体toolStripButton10 = new System.Windows.Forms.ToolStripButton();
this.加粗toolStripButton7 = new System.Windows.Forms.ToolStripButton();
this.markdown语法介绍精简版ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.markdown语法介绍ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.markdown语法介绍二ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.markdownSytnxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.mEditor快捷键ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关于MEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mEditor网站ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.检查最新版ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.倾斜toolStripButton8 = new System.Windows.Forms.ToolStripButton();
this.下划线toolStripButton9 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.自动转行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.背景颜色ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.还原系统原设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.经典黑底白字ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.html预览样式设计ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.通用选项ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
this.界面布局左右互换ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关联md扩展名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.取消md文件关联ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.查找替换ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.替换ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.转到行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.转为大写ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.转为小写ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.插入当前时间ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关闭ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.打开所在文件夹ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabBrowser = new System.Windows.Forms.TabPage();
this.webBrowser1 = new System.Windows.Forms.WebBrowser();
this.tabHtml = new System.Windows.Forms.TabPage();
this.rtbHtml = new System.Windows.Forms.RichTextBox();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.编辑ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.测试ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.推出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabBrowser.SuspendLayout();
this.tabHtml.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.statusStrip1.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// 字体OToolStripMenuItem
//
this.字体OToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("字体OToolStripMenuItem.Image")));
this.字体OToolStripMenuItem.Name = "字体OToolStripMenuItem";
this.字体OToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.字体OToolStripMenuItem.Text = "字体(&F)";
this.字体OToolStripMenuItem.Visible = false;
this.字体OToolStripMenuItem.Click += new System.EventHandler(this.字体OToolStripMenuItem_Click);
//
// 字体颜色ToolStripMenuItem
//
this.字体颜色ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("字体颜色ToolStripMenuItem.Image")));
this.字体颜色ToolStripMenuItem.Name = "字体颜色ToolStripMenuItem";
this.字体颜色ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.字体颜色ToolStripMenuItem.Text = "颜色(&C)";
this.字体颜色ToolStripMenuItem.Visible = false;
this.字体颜色ToolStripMenuItem.Click += new System.EventHandler(this.字体颜色ToolStripMenuItem_Click);
//
// 新建NToolStripMenuItem
//
this.新建NToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("新建NToolStripMenuItem.Image")));
this.新建NToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.新建NToolStripMenuItem.Name = "新建NToolStripMenuItem";
this.新建NToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.新建NToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.新建NToolStripMenuItem.Text = "新建(&N)";
this.新建NToolStripMenuItem.Click += new System.EventHandler(this.新建NToolStripMenuItem_Click);
//
// 打开OToolStripMenuItem
//
this.打开OToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripMenuItem.Image")));
this.打开OToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.打开OToolStripMenuItem.Name = "打开OToolStripMenuItem";
this.打开OToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.打开OToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.打开OToolStripMenuItem.Text = "打开(&O)";
this.打开OToolStripMenuItem.Click += new System.EventHandler(this.打开OToolStripMenuItem_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(201, 6);
//
// 保存SToolStripMenuItem
//
this.保存SToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripMenuItem.Image")));
this.保存SToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.保存SToolStripMenuItem.Name = "保存SToolStripMenuItem";
this.保存SToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.保存SToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.保存SToolStripMenuItem.Text = "保存(&S)";
this.保存SToolStripMenuItem.Click += new System.EventHandler(this.保存SToolStripMenuItem_Click);
//
// 保存所有ToolStripMenuItem
//
this.保存所有ToolStripMenuItem.Name = "保存所有ToolStripMenuItem";
this.保存所有ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.保存所有ToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.保存所有ToolStripMenuItem.Text = "保存所有";
this.保存所有ToolStripMenuItem.Click += new System.EventHandler(this.保存所有ToolStripMenuItem_Click);
//
// 另存为AToolStripMenuItem
//
this.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem";
this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.另存为AToolStripMenuItem.Text = "另存为(&A)";
this.另存为AToolStripMenuItem.Click += new System.EventHandler(this.另存为AToolStripMenuItem_Click);
//
// 关闭ToolStripMenuItem
//
this.关闭ToolStripMenuItem.Name = "关闭ToolStripMenuItem";
this.关闭ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W)));
this.关闭ToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.关闭ToolStripMenuItem.Text = "关闭(&W)";
this.关闭ToolStripMenuItem.Click += new System.EventHandler(this.关闭ToolStripMenuItem_Click);
//
// 关闭所有ToolStripMenuItem
//
this.关闭所有ToolStripMenuItem.Name = "关闭所有ToolStripMenuItem";
this.关闭所有ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.W)));
this.关闭所有ToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.关闭所有ToolStripMenuItem.Text = "关闭所有";
this.关闭所有ToolStripMenuItem.Click += new System.EventHandler(this.关闭所有ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(201, 6);
//
// 打印预览VToolStripMenuItem
//
this.打印预览VToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印预览VToolStripMenuItem.Image")));
this.打印预览VToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.打印预览VToolStripMenuItem.Name = "打印预览VToolStripMenuItem";
this.打印预览VToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
this.打印预览VToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.打印预览VToolStripMenuItem.Text = "Html预览(&M)";
this.打印预览VToolStripMenuItem.Click += new System.EventHandler(this.打印预览VToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(201, 6);
//
// 最近打开的文件ToolStripMenuItem
//
this.最近打开的文件ToolStripMenuItem.Name = "最近打开的文件ToolStripMenuItem";
this.最近打开的文件ToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.最近打开的文件ToolStripMenuItem.Text = "最近打开的文件";
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(201, 6);
//
// 退出XToolStripMenuItem
//
this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem";
this.退出XToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
this.退出XToolStripMenuItem.Text = "退出(&X)";
this.退出XToolStripMenuItem.Click += new System.EventHandler(this.退出XToolStripMenuItem_Click);
//
// toolStrip1
//
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.新建NToolStripButton,
this.打开OToolStripButton,
this.保存SToolStripButton,
this.toolStripButton2,
this.toolStripSeparator6,
this.剪切UToolStripButton,
this.复制CToolStripButton,
this.粘贴PToolStripButton,
this.toolStripSeparator7,
this.撤销toolStripButton5,
this.重做toolStripButton6,
this.toolStripSeparator8,
this.toolStripButton3,
this.字体颜色toolStripButton11,
this.字体toolStripButton10,
this.加粗toolStripButton7,
this.倾斜toolStripButton8,
this.下划线toolStripButton9,
this.toolStripSeparator10,
this.toolStripButton1});
this.toolStrip1.Location = new System.Drawing.Point(0, 24);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
this.toolStrip1.Size = new System.Drawing.Size(818, 25);
this.toolStrip1.TabIndex = 1;
this.toolStrip1.Text = "toolStrip1";
this.toolStrip1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.toolStrip1_MouseDown);
//
// 新建NToolStripButton
//
this.新建NToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.新建NToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("新建NToolStripButton.Image")));
this.新建NToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.新建NToolStripButton.Name = "新建NToolStripButton";
this.新建NToolStripButton.Size = new System.Drawing.Size(23, 22);
this.新建NToolStripButton.Text = "新建(&N)";
this.新建NToolStripButton.Click += new System.EventHandler(this.新建NToolStripButton_Click);
//
// 打开OToolStripButton
//
this.打开OToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.打开OToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripButton.Image")));
this.打开OToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.打开OToolStripButton.Name = "打开OToolStripButton";
this.打开OToolStripButton.Size = new System.Drawing.Size(23, 22);
this.打开OToolStripButton.Text = "打开(&O)";
this.打开OToolStripButton.Click += new System.EventHandler(this.打开OToolStripButton_Click);
//
// 保存SToolStripButton
//
this.保存SToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.保存SToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripButton.Image")));
this.保存SToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.保存SToolStripButton.Name = "保存SToolStripButton";
this.保存SToolStripButton.Size = new System.Drawing.Size(23, 22);
this.保存SToolStripButton.Text = "保存(&S)";
this.保存SToolStripButton.Click += new System.EventHandler(this.保存SToolStripButton_Click);
//
// toolStripButton2
//
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
this.toolStripButton2.Text = "toolStripButton2";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
//
// 剪切UToolStripButton
//
this.剪切UToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.剪切UToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("剪切UToolStripButton.Image")));
this.剪切UToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.剪切UToolStripButton.Name = "剪切UToolStripButton";
this.剪切UToolStripButton.Size = new System.Drawing.Size(23, 22);
this.剪切UToolStripButton.Text = "剪切(&U)";
this.剪切UToolStripButton.Click += new System.EventHandler(this.剪切UToolStripButton_Click);
//
// 复制CToolStripButton
//
this.复制CToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.复制CToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("复制CToolStripButton.Image")));
this.复制CToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.复制CToolStripButton.Name = "复制CToolStripButton";
this.复制CToolStripButton.Size = new System.Drawing.Size(23, 22);
this.复制CToolStripButton.Text = "复制(&C)";
this.复制CToolStripButton.Click += new System.EventHandler(this.复制CToolStripButton_Click);
//
// 粘贴PToolStripButton
//
this.粘贴PToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.粘贴PToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("粘贴PToolStripButton.Image")));
this.粘贴PToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.粘贴PToolStripButton.Name = "粘贴PToolStripButton";
this.粘贴PToolStripButton.Size = new System.Drawing.Size(23, 22);
this.粘贴PToolStripButton.Text = "粘贴(&P)";
this.粘贴PToolStripButton.Click += new System.EventHandler(this.粘贴PToolStripButton_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
//
// 撤销toolStripButton5
//
this.撤销toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.撤销toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("撤销toolStripButton5.Image")));
this.撤销toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
this.撤销toolStripButton5.Name = "撤销toolStripButton5";
this.撤销toolStripButton5.Size = new System.Drawing.Size(23, 22);
this.撤销toolStripButton5.Text = "撤销";
this.撤销toolStripButton5.Click += new System.EventHandler(this.撤销toolStripButton5_Click);
//
// 重做toolStripButton6
//
this.重做toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.重做toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("重做toolStripButton6.Image")));
this.重做toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
this.重做toolStripButton6.Name = "重做toolStripButton6";
this.重做toolStripButton6.Size = new System.Drawing.Size(23, 22);
this.重做toolStripButton6.Text = "重复";
this.重做toolStripButton6.Click += new System.EventHandler(this.重做toolStripButton6_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton3
//
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton3.Name = "toolStripButton3";
this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
this.toolStripButton3.Text = "背景色";
this.toolStripButton3.ToolTipText = "背景色,双击还原系统默认设置";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// 字体颜色toolStripButton11
//
this.字体颜色toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.字体颜色toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("字体颜色toolStripButton11.Image")));
this.字体颜色toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
this.字体颜色toolStripButton11.Name = "字体颜色toolStripButton11";
this.字体颜色toolStripButton11.Size = new System.Drawing.Size(23, 22);
this.字体颜色toolStripButton11.Text = "前景色";
this.字体颜色toolStripButton11.ToolTipText = "前景色,双击还原系统设置";
this.字体颜色toolStripButton11.Click += new System.EventHandler(this.字体颜色toolStripButton11_Click);
//
// 字体toolStripButton10
//
this.字体toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.字体toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("字体toolStripButton10.Image")));
this.字体toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
this.字体toolStripButton10.Name = "字体toolStripButton10";
this.字体toolStripButton10.Size = new System.Drawing.Size(23, 22);
this.字体toolStripButton10.Text = "字体";
this.字体toolStripButton10.Click += new System.EventHandler(this.字体toolStripButton10_Click);
//
// 加粗toolStripButton7
//
this.加粗toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.加粗toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("加粗toolStripButton7.Image")));
this.加粗toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
this.加粗toolStripButton7.Name = "加粗toolStripButton7";
this.加粗toolStripButton7.Size = new System.Drawing.Size(23, 22);
this.加粗toolStripButton7.Text = "加粗";
this.加粗toolStripButton7.Click += new System.EventHandler(this.加粗toolStripButton7_Click);
//
// markdown语法介绍精简版ToolStripMenuItem
//
this.markdown语法介绍精简版ToolStripMenuItem.Name = "markdown语法介绍精简版ToolStripMenuItem";
this.markdown语法介绍精简版ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.markdown语法介绍精简版ToolStripMenuItem.Text = "Markdown 语法介绍精简版";
this.markdown语法介绍精简版ToolStripMenuItem.Click += new System.EventHandler(this.markdown语法介绍精简版ToolStripMenuItem_Click);
//
// markdown语法介绍ToolStripMenuItem
//
this.markdown语法介绍ToolStripMenuItem.Name = "markdown语法介绍ToolStripMenuItem";
this.markdown语法介绍ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.markdown语法介绍ToolStripMenuItem.Text = "Markdown语法介绍一";
this.markdown语法介绍ToolStripMenuItem.Click += new System.EventHandler(this.markdown语法介绍ToolStripMenuItem_Click);
//
// markdown语法介绍二ToolStripMenuItem
//
this.markdown语法介绍二ToolStripMenuItem.Name = "markdown语法介绍二ToolStripMenuItem";
this.markdown语法介绍二ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.markdown语法介绍二ToolStripMenuItem.Text = "Markdown语法介绍二";
this.markdown语法介绍二ToolStripMenuItem.Click += new System.EventHandler(this.markdown语法介绍二ToolStripMenuItem_Click);
//
// markdownSytnxToolStripMenuItem
//
this.markdownSytnxToolStripMenuItem.Name = "markdownSytnxToolStripMenuItem";
this.markdownSytnxToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.markdownSytnxToolStripMenuItem.Text = "Markdown Syntax";
this.markdownSytnxToolStripMenuItem.Click += new System.EventHandler(this.markdownSytnxToolStripMenuItem_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(222, 6);
//
// mEditor快捷键ToolStripMenuItem
//
this.mEditor快捷键ToolStripMenuItem.Name = "mEditor快捷键ToolStripMenuItem";
this.mEditor快捷键ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.mEditor快捷键ToolStripMenuItem.Text = "MEditor 快捷键";
this.mEditor快捷键ToolStripMenuItem.Click += new System.EventHandler(this.mEditor快捷键ToolStripMenuItem_Click);
//
// 关于MEditorToolStripMenuItem
//
this.关于MEditorToolStripMenuItem.Name = "关于MEditorToolStripMenuItem";
this.关于MEditorToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.关于MEditorToolStripMenuItem.Text = "关于MEditor";
this.关于MEditorToolStripMenuItem.Click += new System.EventHandler(this.关于MEditorToolStripMenuItem_Click);
//
// mEditor网站ToolStripMenuItem
//
this.mEditor网站ToolStripMenuItem.Name = "mEditor网站ToolStripMenuItem";
this.mEditor网站ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.mEditor网站ToolStripMenuItem.Text = "MEditor网站";
this.mEditor网站ToolStripMenuItem.Click += new System.EventHandler(this.mEditor网站ToolStripMenuItem_Click);
//
// 检查最新版ToolStripMenuItem
//
this.检查最新版ToolStripMenuItem.Name = "检查最新版ToolStripMenuItem";
this.检查最新版ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.检查最新版ToolStripMenuItem.Text = "检查最新版";
this.检查最新版ToolStripMenuItem.Click += new System.EventHandler(this.检查最新版ToolStripMenuItem_Click);
//
// 倾斜toolStripButton8
//
this.倾斜toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.倾斜toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("倾斜toolStripButton8.Image")));
this.倾斜toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
this.倾斜toolStripButton8.Name = "倾斜toolStripButton8";
this.倾斜toolStripButton8.Size = new System.Drawing.Size(23, 22);
this.倾斜toolStripButton8.Text = "倾斜";
this.倾斜toolStripButton8.Click += new System.EventHandler(this.倾斜toolStripButton8_Click);
//
// 下划线toolStripButton9
//
this.下划线toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.下划线toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("下划线toolStripButton9.Image")));
this.下划线toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
this.下划线toolStripButton9.Name = "下划线toolStripButton9";
this.下划线toolStripButton9.Size = new System.Drawing.Size(23, 22);
this.下划线toolStripButton9.Text = "下划线";
this.下划线toolStripButton9.Click += new System.EventHandler(this.下划线toolStripButton9_Click);
//
// toolStripSeparator10
//
this.toolStripSeparator10.Name = "toolStripSeparator10";
this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton1
//
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(76, 22);
this.toolStripButton1.Text = "html预览";
this.toolStripButton1.ToolTipText = "快捷键 F5";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(168, 6);
//
// 自动转行ToolStripMenuItem
//
this.自动转行ToolStripMenuItem.CheckOnClick = true;
this.自动转行ToolStripMenuItem.Name = "自动转行ToolStripMenuItem";
this.自动转行ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.自动转行ToolStripMenuItem.Text = "自动转行";
this.自动转行ToolStripMenuItem.Click += new System.EventHandler(this.自动转行ToolStripMenuItem_Click);
//
// 背景颜色ToolStripMenuItem
//
this.背景颜色ToolStripMenuItem.Name = "背景颜色ToolStripMenuItem";
this.背景颜色ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.背景颜色ToolStripMenuItem.Text = "背景颜色";
this.背景颜色ToolStripMenuItem.Visible = false;
this.背景颜色ToolStripMenuItem.Click += new System.EventHandler(this.背景颜色ToolStripMenuItem_Click);
//
// 还原系统原设置ToolStripMenuItem
//
this.还原系统原设置ToolStripMenuItem.Name = "还原系统原设置ToolStripMenuItem";
this.还原系统原设置ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.还原系统原设置ToolStripMenuItem.Text = "经典白底黑字";
this.还原系统原设置ToolStripMenuItem.Visible = false;
this.还原系统原设置ToolStripMenuItem.Click += new System.EventHandler(this.还原系统原设置ToolStripMenuItem_Click);
//
// 经典黑底白字ToolStripMenuItem
//
this.经典黑底白字ToolStripMenuItem.Name = "经典黑底白字ToolStripMenuItem";
this.经典黑底白字ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.经典黑底白字ToolStripMenuItem.Text = "默认黑底白字";
this.经典黑底白字ToolStripMenuItem.Visible = false;
this.经典黑底白字ToolStripMenuItem.Click += new System.EventHandler(this.经典黑底白字ToolStripMenuItem_Click);
//
// html预览样式设计ToolStripMenuItem
//
this.html预览样式设计ToolStripMenuItem.Name = "html预览样式设计ToolStripMenuItem";
this.html预览样式设计ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.html预览样式设计ToolStripMenuItem.Text = "html预览样式设计";
this.html预览样式设计ToolStripMenuItem.Visible = false;
this.html预览样式设计ToolStripMenuItem.Click += new System.EventHandler(this.html预览样式设计ToolStripMenuItem_Click);
//
// 通用选项ToolStripMenuItem
//
this.通用选项ToolStripMenuItem.Name = "通用选项ToolStripMenuItem";
this.通用选项ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.通用选项ToolStripMenuItem.Text = "通用选项";
this.通用选项ToolStripMenuItem.Click += new System.EventHandler(this.通用选项ToolStripMenuItem_Click);
//
// toolStripMenuItem4
//
this.toolStripMenuItem4.Name = "toolStripMenuItem4";
this.toolStripMenuItem4.Size = new System.Drawing.Size(168, 6);
//
// 界面布局左右互换ToolStripMenuItem
//
this.界面布局左右互换ToolStripMenuItem.Name = "界面布局左右互换ToolStripMenuItem";
this.界面布局左右互换ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.界面布局左右互换ToolStripMenuItem.Text = "界面布局左右互换";
this.界面布局左右互换ToolStripMenuItem.ToolTipText = "将编辑器和html预览区左右交换";
this.界面布局左右互换ToolStripMenuItem.Click += new System.EventHandler(this.界面布局左右互换ToolStripMenuItem_Click);
//
// 关联md扩展名ToolStripMenuItem
//
this.关联md扩展名ToolStripMenuItem.Name = "关联md扩展名ToolStripMenuItem";
this.关联md扩展名ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.关联md扩展名ToolStripMenuItem.Text = "关联.md扩展名";
this.关联md扩展名ToolStripMenuItem.Click += new System.EventHandler(this.关联md扩展名ToolStripMenuItem_Click);
//
// 取消md文件关联ToolStripMenuItem
//
this.取消md文件关联ToolStripMenuItem.Name = "取消md文件关联ToolStripMenuItem";
this.取消md文件关联ToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.取消md文件关联ToolStripMenuItem.Text = "取消.md文件关联";
this.取消md文件关联ToolStripMenuItem.Click += new System.EventHandler(this.取消md文件关联ToolStripMenuItem_Click);
//
// 查找替换ToolStripMenuItem
//
this.查找替换ToolStripMenuItem.Name = "查找替换ToolStripMenuItem";
this.查找替换ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.查找替换ToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
this.查找替换ToolStripMenuItem.Text = "查找";
this.查找替换ToolStripMenuItem.Click += new System.EventHandler(this.查找替换ToolStripMenuItem_Click);
//
// 替换ToolStripMenuItem
//
this.替换ToolStripMenuItem.Name = "替换ToolStripMenuItem";
this.替换ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H)));
this.替换ToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
this.替换ToolStripMenuItem.Text = "替换";
this.替换ToolStripMenuItem.Click += new System.EventHandler(this.替换ToolStripMenuItem_Click);
//
// 转到行ToolStripMenuItem
//
this.转到行ToolStripMenuItem.Name = "转到行ToolStripMenuItem";
this.转到行ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G)));
this.转到行ToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
this.转到行ToolStripMenuItem.Text = "转到";
this.转到行ToolStripMenuItem.Click += new System.EventHandler(this.转到行ToolStripMenuItem_Click);
//
// 转为大写ToolStripMenuItem
//
this.转为大写ToolStripMenuItem.Name = "转为大写ToolStripMenuItem";
this.转为大写ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.U)));
this.转为大写ToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
this.转为大写ToolStripMenuItem.Text = "转换为大写";
this.转为大写ToolStripMenuItem.Click += new System.EventHandler(this.转为大写ToolStripMenuItem_Click);
//
// 转为小写ToolStripMenuItem
//
this.转为小写ToolStripMenuItem.Name = "转为小写ToolStripMenuItem";
this.转为小写ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U)));
this.转为小写ToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
this.转为小写ToolStripMenuItem.Text = "转换为小写";
this.转为小写ToolStripMenuItem.Click += new System.EventHandler(this.转为小写ToolStripMenuItem_Click);
//
// 插入当前时间ToolStripMenuItem
//
this.插入当前时间ToolStripMenuItem.Name = "插入当前时间ToolStripMenuItem";
this.插入当前时间ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
this.插入当前时间ToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
this.插入当前时间ToolStripMenuItem.Text = "插入当前时间";
this.插入当前时间ToolStripMenuItem.Click += new System.EventHandler(this.时间日期F5ToolStripMenuItem_Click);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 49);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.tabControl1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.tabControl2);
this.splitContainer1.Size = new System.Drawing.Size(818, 435);
this.splitContainer1.SplitterDistance = 479;
this.splitContainer1.SplitterWidth = 8;
this.splitContainer1.TabIndex = 4;
this.splitContainer1.DoubleClick += new System.EventHandler(this.splitContainer1_DoubleClick);
//
// tabControl1
//
this.tabControl1.ContextMenuStrip = this.contextMenuStrip1;
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.ShowToolTips = true;
this.tabControl1.Size = new System.Drawing.Size(479, 435);
this.tabControl1.TabIndex = 3;
this.tabControl1.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabControl1_Selected);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.保存ToolStripMenuItem,
this.关闭ToolStripMenuItem1,
this.打开所在文件夹ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(177, 70);
//
// 保存ToolStripMenuItem
//
this.保存ToolStripMenuItem.Name = "保存ToolStripMenuItem";
this.保存ToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.保存ToolStripMenuItem.Text = "保存(&S)";
this.保存ToolStripMenuItem.Click += new System.EventHandler(this.保存ToolStripMenuItem_Click);
//
// 关闭ToolStripMenuItem1
//
this.关闭ToolStripMenuItem1.Name = "关闭ToolStripMenuItem1";
this.关闭ToolStripMenuItem1.Size = new System.Drawing.Size(176, 22);
this.关闭ToolStripMenuItem1.Text = "关闭(&W)";
this.关闭ToolStripMenuItem1.Click += new System.EventHandler(this.关闭ToolStripMenuItem1_Click);
//
// 打开所在文件夹ToolStripMenuItem
//
this.打开所在文件夹ToolStripMenuItem.Name = "打开所在文件夹ToolStripMenuItem";
this.打开所在文件夹ToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.打开所在文件夹ToolStripMenuItem.Text = "打开所在文件夹(&O)";
this.打开所在文件夹ToolStripMenuItem.Click += new System.EventHandler(this.打开所在文件夹ToolStripMenuItem_Click);
//
// tabControl2
//
this.tabControl2.Controls.Add(this.tabBrowser);
this.tabControl2.Controls.Add(this.tabHtml);
this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl2.Location = new System.Drawing.Point(0, 0);
this.tabControl2.Name = "tabControl2";
this.tabControl2.Padding = new System.Drawing.Point(0, 0);
this.tabControl2.SelectedIndex = 0;
this.tabControl2.Size = new System.Drawing.Size(331, 435);
this.tabControl2.TabIndex = 1;
//
// tabBrowser
//
this.tabBrowser.Controls.Add(this.webBrowser1);
this.tabBrowser.Location = new System.Drawing.Point(4, 22);
this.tabBrowser.Name = "tabBrowser";
this.tabBrowser.Size = new System.Drawing.Size(323, 409);
this.tabBrowser.TabIndex = 0;
this.tabBrowser.Text = "预览";
this.tabBrowser.UseVisualStyleBackColor = true;
//
// webBrowser1
//
this.webBrowser1.CausesValidation = false;
this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
this.webBrowser1.Location = new System.Drawing.Point(0, 0);
this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
this.webBrowser1.Name = "webBrowser1";
this.webBrowser1.Size = new System.Drawing.Size(323, 409);
this.webBrowser1.TabIndex = 0;
this.webBrowser1.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.webBrowser1_Navigating);
//
// tabHtml
//
this.tabHtml.Controls.Add(this.rtbHtml);
this.tabHtml.Location = new System.Drawing.Point(4, 22);
this.tabHtml.Name = "tabHtml";
this.tabHtml.Padding = new System.Windows.Forms.Padding(3);
this.tabHtml.Size = new System.Drawing.Size(323, 409);
this.tabHtml.TabIndex = 1;
this.tabHtml.Text = "源代码";
this.tabHtml.UseVisualStyleBackColor = true;
//
// rtbHtml
//
this.rtbHtml.AutoWordSelection = true;
this.rtbHtml.DetectUrls = false;
this.rtbHtml.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtbHtml.EnableAutoDragDrop = true;
this.rtbHtml.Location = new System.Drawing.Point(3, 3);
this.rtbHtml.Name = "rtbHtml";
this.rtbHtml.Size = new System.Drawing.Size(317, 403);
this.rtbHtml.TabIndex = 0;
this.rtbHtml.Text = "";
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(154, 17);
this.toolStripStatusLabel1.Text = "Markdown编辑器,纯开源";
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(0, 484);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(818, 22);
this.statusStrip1.TabIndex = 3;
this.statusStrip1.Text = "statusStrip1";
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.文件ToolStripMenuItem,
this.编辑ToolStripMenuItem,
this.设置ToolStripMenuItem,
this.帮助ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(818, 24);
this.menuStrip1.TabIndex = 5;
this.menuStrip1.Text = "menuStrip1";
//
// 文件ToolStripMenuItem
//
this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.新建NToolStripMenuItem,
this.打开OToolStripMenuItem,
this.toolStripSeparator,
this.保存SToolStripMenuItem,
this.保存所有ToolStripMenuItem,
this.另存为AToolStripMenuItem,
this.关闭ToolStripMenuItem,
this.关闭所有ToolStripMenuItem,
this.toolStripSeparator1,
this.打印预览VToolStripMenuItem,
this.toolStripSeparator2,
this.最近打开的文件ToolStripMenuItem,
this.toolStripMenuItem3,
this.退出XToolStripMenuItem});
this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
this.文件ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.文件ToolStripMenuItem.Text = "文件";
//
// 编辑ToolStripMenuItem
//
this.编辑ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.查找替换ToolStripMenuItem,
this.替换ToolStripMenuItem,
this.转到行ToolStripMenuItem,
this.转为大写ToolStripMenuItem,
this.转为小写ToolStripMenuItem,
this.插入当前时间ToolStripMenuItem});
this.编辑ToolStripMenuItem.Name = "编辑ToolStripMenuItem";
this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.编辑ToolStripMenuItem.Text = "编辑";
//
// 设置ToolStripMenuItem
//
this.设置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1,
this.自动转行ToolStripMenuItem,
this.字体OToolStripMenuItem,
this.字体颜色ToolStripMenuItem,
this.背景颜色ToolStripMenuItem,
this.还原系统原设置ToolStripMenuItem,
this.经典黑底白字ToolStripMenuItem,
this.html预览样式设计ToolStripMenuItem,
this.通用选项ToolStripMenuItem,
this.toolStripMenuItem4,
this.界面布局左右互换ToolStripMenuItem,
this.关联md扩展名ToolStripMenuItem,
this.取消md文件关联ToolStripMenuItem});
this.设置ToolStripMenuItem.Name = "设置ToolStripMenuItem";
this.设置ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.设置ToolStripMenuItem.Text = "设置";
//
// 帮助ToolStripMenuItem
//
this.帮助ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.markdown语法介绍精简版ToolStripMenuItem,
this.markdown语法介绍ToolStripMenuItem,
this.markdown语法介绍二ToolStripMenuItem,
this.markdownSytnxToolStripMenuItem,
this.toolStripMenuItem2,
this.mEditor快捷键ToolStripMenuItem,
this.关于MEditorToolStripMenuItem,
this.mEditor网站ToolStripMenuItem,
this.检查最新版ToolStripMenuItem,
this.测试ToolStripMenuItem});
this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.帮助ToolStripMenuItem.Text = "帮助";
//
// 测试ToolStripMenuItem
//
this.测试ToolStripMenuItem.Name = "测试ToolStripMenuItem";
this.测试ToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.测试ToolStripMenuItem.Text = "测试";
//
// 推出ToolStripMenuItem
//
this.推出ToolStripMenuItem.Name = "推出ToolStripMenuItem";
this.推出ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.推出ToolStripMenuItem.Text = "推出";
//
// frmMain
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(818, 506);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.MinimumSize = new System.Drawing.Size(500, 300);
this.Name = "frmMain";
this.Text = "码德编辑器";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
this.Load += new System.EventHandler(this.frmMain_Load);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.frmMain_DragDrop);
this.DragOver += new System.Windows.Forms.DragEventHandler(this.frmMain_DragOver);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
this.tabControl2.ResumeLayout(false);
this.tabBrowser.ResumeLayout(false);
this.tabHtml.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStripMenuItem 新建NToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 打开OToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private System.Windows.Forms.ToolStripMenuItem 保存SToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 另存为AToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem 打印预览VToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem 退出XToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 字体OToolStripMenuItem;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton 新建NToolStripButton;
private System.Windows.Forms.ToolStripButton 打开OToolStripButton;
private System.Windows.Forms.ToolStripButton 保存SToolStripButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripButton 剪切UToolStripButton;
private System.Windows.Forms.ToolStripButton 复制CToolStripButton;
private System.Windows.Forms.ToolStripButton 粘贴PToolStripButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripButton 撤销toolStripButton5;
private System.Windows.Forms.ToolStripButton 重做toolStripButton6;
private System.Windows.Forms.ToolStripButton 加粗toolStripButton7;
private System.Windows.Forms.ToolStripButton 倾斜toolStripButton8;
private System.Windows.Forms.ToolStripButton 下划线toolStripButton9;
private System.Windows.Forms.ToolStripMenuItem 字体颜色ToolStripMenuItem;
private System.Windows.Forms.ToolStripButton 字体toolStripButton10;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
private System.Windows.Forms.ToolStripButton 字体颜色toolStripButton11;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.WebBrowser webBrowser1;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.ToolStripMenuItem 最近打开的文件ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 关闭ToolStripMenuItem;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripMenuItem 关闭所有ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 保存所有ToolStripMenuItem;
private System.Windows.Forms.ToolStripButton toolStripButton2;
private System.Windows.Forms.ErrorProvider errorProvider1;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem 保存ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 关闭ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 打开所在文件夹ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 自动转行ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 背景颜色ToolStripMenuItem;
private System.Windows.Forms.ToolStripButton toolStripButton3;
private System.Windows.Forms.ToolStripMenuItem 还原系统原设置ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem markdown语法介绍ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 关于MEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem markdown语法介绍二ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem markdownSytnxToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem markdown语法介绍精简版ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
private System.Windows.Forms.ToolStripMenuItem 界面布局左右互换ToolStripMenuItem;
private System.Windows.Forms.TabControl tabControl2;
private System.Windows.Forms.TabPage tabBrowser;
private System.Windows.Forms.TabPage tabHtml;
private System.Windows.Forms.RichTextBox rtbHtml;
private System.Windows.Forms.ToolStripMenuItem 关联md扩展名ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 查找替换ToolStripMenuItem;