-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
879 lines (873 loc) · 47.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
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
namespace DictGenerator
{
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.metroComboBox1 = new MetroFramework.Controls.MetroComboBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.label3 = new System.Windows.Forms.Label();
this.comboBox2 = new MetroFramework.Controls.MetroComboBox();
this.button2 = new MetroFramework.Controls.MetroButton();
this.treeView1 = new System.Windows.Forms.TreeView();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.BListBox = new System.Windows.Forms.ListBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.CListBox = new System.Windows.Forms.ListBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.defineText = new System.Windows.Forms.RichTextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.字符大写并追加ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.首字母大写并追加ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.字符转置并追加ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.defineLab = new System.Windows.Forms.CheckBox();
this.openFile = new MetroFramework.Controls.MetroButton();
this.metroTextBox1 = new MetroFramework.Controls.MetroTextBox();
this.dateTimePicker1 = new MetroFramework.Controls.MetroDateTime();
this.titleLab = new System.Windows.Forms.CheckBox();
this.titleText = new MetroFramework.Controls.MetroTextBox();
this.siteLab = new System.Windows.Forms.CheckBox();
this.siteText = new MetroFramework.Controls.MetroTextBox();
this.label1 = new System.Windows.Forms.Label();
this.nameLab = new System.Windows.Forms.CheckBox();
this.phonenumberText = new MetroFramework.Controls.MetroTextBox();
this.nameText = new MetroFramework.Controls.MetroTextBox();
this.username = new System.Windows.Forms.CheckBox();
this.birthdayLab = new System.Windows.Forms.CheckBox();
this.botNum = new MetroFramework.Controls.MetroTextBox();
this.phonenumberLab = new System.Windows.Forms.CheckBox();
this.numLab = new System.Windows.Forms.CheckBox();
this.topNum = new MetroFramework.Controls.MetroTextBox();
this.panel1 = new System.Windows.Forms.Panel();
this.save = new MetroFramework.Controls.MetroButton();
this.appendfile = new MetroFramework.Controls.MetroButton();
this.appendDict = new System.Windows.Forms.CheckBox();
this.generateDict = new System.Windows.Forms.Button();
this.richTextBox2 = new System.Windows.Forms.RichTextBox();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.groupBox2.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.panel1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
this.groupBox2.Controls.Add(this.metroComboBox1);
this.groupBox2.Controls.Add(this.tabControl1);
this.groupBox2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox2.Location = new System.Drawing.Point(583, 106);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(211, 452);
this.groupBox2.TabIndex = 12;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "B类";
//
// metroComboBox1
//
this.metroComboBox1.DisplayFocus = true;
this.metroComboBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.metroComboBox1.FormattingEnabled = true;
this.metroComboBox1.ItemHeight = 23;
this.metroComboBox1.Location = new System.Drawing.Point(3, 19);
this.metroComboBox1.Name = "metroComboBox1";
this.metroComboBox1.Size = new System.Drawing.Size(205, 29);
this.metroComboBox1.TabIndex = 14;
this.metroComboBox1.UseSelectable = true;
this.metroComboBox1.SelectedIndexChanged += new System.EventHandler(this.metroComboBox1_SelectedIndexChanged);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.tabControl1.Location = new System.Drawing.Point(3, 58);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(205, 391);
this.tabControl1.TabIndex = 13;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.label3);
this.tabPage1.Controls.Add(this.comboBox2);
this.tabPage1.Controls.Add(this.button2);
this.tabPage1.Controls.Add(this.treeView1);
this.tabPage1.Location = new System.Drawing.Point(4, 24);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(197, 363);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "符号组合";
this.tabPage1.UseVisualStyleBackColor = true;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.Location = new System.Drawing.Point(3, 335);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(152, 16);
this.label3.TabIndex = 9;
this.label3.Text = "限定组合的最大个数";
//
// comboBox2
//
this.comboBox2.FormattingEnabled = true;
this.comboBox2.ItemHeight = 23;
this.comboBox2.Location = new System.Drawing.Point(155, 328);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(36, 29);
this.comboBox2.TabIndex = 11;
this.comboBox2.UseSelectable = true;
//
// button2
//
this.button2.Dock = System.Windows.Forms.DockStyle.Top;
this.button2.FontWeight = MetroFramework.MetroButtonWeight.Regular;
this.button2.Location = new System.Drawing.Point(3, 3);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(191, 23);
this.button2.TabIndex = 12;
this.button2.Text = "全选/全不选";
this.button2.UseSelectable = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// treeView1
//
this.treeView1.CheckBoxes = true;
this.treeView1.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.treeView1.Location = new System.Drawing.Point(-4, 32);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(205, 290);
this.treeView1.TabIndex = 2;
this.treeView1.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterCheck);
//
// tabPage2
//
this.tabPage2.Controls.Add(this.BListBox);
this.tabPage2.Location = new System.Drawing.Point(4, 24);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(197, 363);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "默认配置";
this.tabPage2.UseVisualStyleBackColor = true;
//
// BListBox
//
this.BListBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.BListBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.BListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
this.BListBox.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.BListBox.FormattingEnabled = true;
this.BListBox.ItemHeight = 20;
this.BListBox.Location = new System.Drawing.Point(3, 3);
this.BListBox.Name = "BListBox";
this.BListBox.Size = new System.Drawing.Size(191, 357);
this.BListBox.TabIndex = 0;
this.BListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.BListBox_DrawItem);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.CListBox);
this.groupBox3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox3.Location = new System.Drawing.Point(800, 106);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(212, 452);
this.groupBox3.TabIndex = 13;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "C类";
//
// CListBox
//
this.CListBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.CListBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.CListBox.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.CListBox.FormattingEnabled = true;
this.CListBox.ItemHeight = 19;
this.CListBox.Location = new System.Drawing.Point(3, 19);
this.CListBox.Name = "CListBox";
this.CListBox.Size = new System.Drawing.Size(206, 430);
this.CListBox.TabIndex = 0;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.defineText);
this.groupBox1.Controls.Add(this.defineLab);
this.groupBox1.Controls.Add(this.openFile);
this.groupBox1.Controls.Add(this.metroTextBox1);
this.groupBox1.Controls.Add(this.dateTimePicker1);
this.groupBox1.Controls.Add(this.titleLab);
this.groupBox1.Controls.Add(this.titleText);
this.groupBox1.Controls.Add(this.siteLab);
this.groupBox1.Controls.Add(this.siteText);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.nameLab);
this.groupBox1.Controls.Add(this.phonenumberText);
this.groupBox1.Controls.Add(this.nameText);
this.groupBox1.Controls.Add(this.username);
this.groupBox1.Controls.Add(this.birthdayLab);
this.groupBox1.Controls.Add(this.botNum);
this.groupBox1.Controls.Add(this.phonenumberLab);
this.groupBox1.Controls.Add(this.numLab);
this.groupBox1.Controls.Add(this.topNum);
this.groupBox1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox1.Location = new System.Drawing.Point(0, 106);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(577, 452);
this.groupBox1.TabIndex = 12;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "A类";
//
// defineText
//
this.defineText.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.defineText.ContextMenuStrip = this.contextMenuStrip1;
this.defineText.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.defineText.Location = new System.Drawing.Point(348, 55);
this.defineText.Name = "defineText";
this.defineText.Size = new System.Drawing.Size(219, 391);
this.defineText.TabIndex = 17;
this.defineText.Text = "";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.字符大写并追加ToolStripMenuItem,
this.首字母大写并追加ToolStripMenuItem,
this.字符转置并追加ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(197, 70);
//
// 字符大写并追加ToolStripMenuItem
//
this.字符大写并追加ToolStripMenuItem.Name = "字符大写并追加ToolStripMenuItem";
this.字符大写并追加ToolStripMenuItem.Size = new System.Drawing.Size(196, 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(196, 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(196, 22);
this.字符转置并追加ToolStripMenuItem.Text = "字符转置并追加";
this.字符转置并追加ToolStripMenuItem.Click += new System.EventHandler(this.字符转置并追加ToolStripMenuItem_Click);
//
// defineLab
//
this.defineLab.AutoSize = true;
this.defineLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.defineLab.Location = new System.Drawing.Point(408, 22);
this.defineLab.Name = "defineLab";
this.defineLab.Size = new System.Drawing.Size(107, 20);
this.defineLab.TabIndex = 0;
this.defineLab.Text = "自定义字符";
this.defineLab.UseVisualStyleBackColor = true;
//
// openFile
//
this.openFile.Highlight = true;
this.openFile.Location = new System.Drawing.Point(255, 299);
this.openFile.Name = "openFile";
this.openFile.Size = new System.Drawing.Size(75, 23);
this.openFile.TabIndex = 15;
this.openFile.Text = "打开";
this.openFile.Theme = MetroFramework.MetroThemeStyle.Light;
this.openFile.UseSelectable = true;
this.openFile.Click += new System.EventHandler(this.openFile_Click);
//
// metroTextBox1
//
//
//
//
this.metroTextBox1.CustomButton.Image = null;
this.metroTextBox1.CustomButton.Location = new System.Drawing.Point(121, 1);
this.metroTextBox1.CustomButton.Name = "";
this.metroTextBox1.CustomButton.Size = new System.Drawing.Size(21, 21);
this.metroTextBox1.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.metroTextBox1.CustomButton.TabIndex = 1;
this.metroTextBox1.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.metroTextBox1.CustomButton.UseSelectable = true;
this.metroTextBox1.CustomButton.Visible = false;
this.metroTextBox1.Lines = new string[0];
this.metroTextBox1.Location = new System.Drawing.Point(106, 299);
this.metroTextBox1.MaxLength = 32767;
this.metroTextBox1.Name = "metroTextBox1";
this.metroTextBox1.PasswordChar = '\0';
this.metroTextBox1.PromptText = "选择文件";
this.metroTextBox1.ReadOnly = true;
this.metroTextBox1.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.metroTextBox1.SelectedText = "";
this.metroTextBox1.SelectionLength = 0;
this.metroTextBox1.SelectionStart = 0;
this.metroTextBox1.ShortcutsEnabled = true;
this.metroTextBox1.Size = new System.Drawing.Size(143, 23);
this.metroTextBox1.TabIndex = 14;
this.metroTextBox1.UseSelectable = true;
this.metroTextBox1.WaterMark = "选择文件";
this.metroTextBox1.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.metroTextBox1.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
//
// dateTimePicker1
//
this.dateTimePicker1.Location = new System.Drawing.Point(106, 242);
this.dateTimePicker1.MinimumSize = new System.Drawing.Size(0, 29);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(225, 29);
this.dateTimePicker1.TabIndex = 13;
//
// titleLab
//
this.titleLab.AutoSize = true;
this.titleLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.titleLab.Location = new System.Drawing.Point(9, 61);
this.titleLab.Name = "titleLab";
this.titleLab.Size = new System.Drawing.Size(91, 20);
this.titleLab.TabIndex = 0;
this.titleLab.Text = "网站标题";
this.titleLab.UseVisualStyleBackColor = true;
//
// titleText
//
//
//
//
this.titleText.CustomButton.Image = null;
this.titleText.CustomButton.Location = new System.Drawing.Point(200, 2);
this.titleText.CustomButton.Name = "";
this.titleText.CustomButton.Size = new System.Drawing.Size(21, 21);
this.titleText.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.titleText.CustomButton.TabIndex = 1;
this.titleText.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.titleText.CustomButton.UseSelectable = true;
this.titleText.CustomButton.Visible = false;
this.titleText.FontSize = MetroFramework.MetroTextBoxSize.Medium;
this.titleText.Lines = new string[0];
this.titleText.Location = new System.Drawing.Point(106, 55);
this.titleText.MaxLength = 32767;
this.titleText.Name = "titleText";
this.titleText.PasswordChar = '\0';
this.titleText.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.titleText.SelectedText = "";
this.titleText.SelectionLength = 0;
this.titleText.SelectionStart = 0;
this.titleText.ShortcutsEnabled = true;
this.titleText.Size = new System.Drawing.Size(224, 26);
this.titleText.TabIndex = 1;
this.titleText.UseSelectable = true;
this.titleText.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.titleText.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
//
// siteLab
//
this.siteLab.AutoSize = true;
this.siteLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.siteLab.Location = new System.Drawing.Point(9, 107);
this.siteLab.Name = "siteLab";
this.siteLab.Size = new System.Drawing.Size(91, 20);
this.siteLab.TabIndex = 0;
this.siteLab.Text = "网站域名";
this.siteLab.UseVisualStyleBackColor = true;
//
// siteText
//
//
//
//
this.siteText.CustomButton.Image = null;
this.siteText.CustomButton.Location = new System.Drawing.Point(200, 2);
this.siteText.CustomButton.Name = "";
this.siteText.CustomButton.Size = new System.Drawing.Size(21, 21);
this.siteText.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.siteText.CustomButton.TabIndex = 1;
this.siteText.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.siteText.CustomButton.UseSelectable = true;
this.siteText.CustomButton.Visible = false;
this.siteText.FontSize = MetroFramework.MetroTextBoxSize.Medium;
this.siteText.Lines = new string[0];
this.siteText.Location = new System.Drawing.Point(106, 101);
this.siteText.MaxLength = 32767;
this.siteText.Name = "siteText";
this.siteText.PasswordChar = '\0';
this.siteText.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.siteText.SelectedText = "";
this.siteText.SelectionLength = 0;
this.siteText.SelectionStart = 0;
this.siteText.ShortcutsEnabled = true;
this.siteText.Size = new System.Drawing.Size(224, 26);
this.siteText.TabIndex = 4;
this.siteText.UseSelectable = true;
this.siteText.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.siteText.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(153, 353);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(14, 14);
this.label1.TabIndex = 5;
this.label1.Text = "-";
//
// nameLab
//
this.nameLab.AutoSize = true;
this.nameLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.nameLab.Location = new System.Drawing.Point(9, 154);
this.nameLab.Name = "nameLab";
this.nameLab.Size = new System.Drawing.Size(59, 20);
this.nameLab.TabIndex = 0;
this.nameLab.Text = "姓名";
this.nameLab.UseVisualStyleBackColor = true;
//
// phonenumberText
//
//
//
//
this.phonenumberText.CustomButton.Image = null;
this.phonenumberText.CustomButton.Location = new System.Drawing.Point(201, 2);
this.phonenumberText.CustomButton.Name = "";
this.phonenumberText.CustomButton.Size = new System.Drawing.Size(21, 21);
this.phonenumberText.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.phonenumberText.CustomButton.TabIndex = 1;
this.phonenumberText.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.phonenumberText.CustomButton.UseSelectable = true;
this.phonenumberText.CustomButton.Visible = false;
this.phonenumberText.Lines = new string[0];
this.phonenumberText.Location = new System.Drawing.Point(106, 192);
this.phonenumberText.MaxLength = 11;
this.phonenumberText.Name = "phonenumberText";
this.phonenumberText.PasswordChar = '\0';
this.phonenumberText.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.phonenumberText.SelectedText = "";
this.phonenumberText.SelectionLength = 0;
this.phonenumberText.SelectionStart = 0;
this.phonenumberText.ShortcutsEnabled = true;
this.phonenumberText.Size = new System.Drawing.Size(225, 26);
this.phonenumberText.TabIndex = 6;
this.phonenumberText.UseSelectable = true;
this.phonenumberText.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.phonenumberText.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
this.phonenumberText.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.onKeyPress);
//
// nameText
//
//
//
//
this.nameText.CustomButton.Image = null;
this.nameText.CustomButton.Location = new System.Drawing.Point(200, 2);
this.nameText.CustomButton.Name = "";
this.nameText.CustomButton.Size = new System.Drawing.Size(21, 21);
this.nameText.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.nameText.CustomButton.TabIndex = 1;
this.nameText.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.nameText.CustomButton.UseSelectable = true;
this.nameText.CustomButton.Visible = false;
this.nameText.FontSize = MetroFramework.MetroTextBoxSize.Medium;
this.nameText.Lines = new string[0];
this.nameText.Location = new System.Drawing.Point(106, 148);
this.nameText.MaxLength = 32767;
this.nameText.Name = "nameText";
this.nameText.PasswordChar = '\0';
this.nameText.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.nameText.SelectedText = "";
this.nameText.SelectionLength = 0;
this.nameText.SelectionStart = 0;
this.nameText.ShortcutsEnabled = true;
this.nameText.Size = new System.Drawing.Size(224, 26);
this.nameText.TabIndex = 5;
this.nameText.UseSelectable = true;
this.nameText.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.nameText.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
//
// username
//
this.username.AutoSize = true;
this.username.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.username.Location = new System.Drawing.Point(9, 299);
this.username.Name = "username";
this.username.Size = new System.Drawing.Size(75, 20);
this.username.TabIndex = 0;
this.username.Text = "用户名";
this.username.UseVisualStyleBackColor = true;
//
// birthdayLab
//
this.birthdayLab.AutoSize = true;
this.birthdayLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.birthdayLab.Location = new System.Drawing.Point(9, 248);
this.birthdayLab.Name = "birthdayLab";
this.birthdayLab.Size = new System.Drawing.Size(59, 20);
this.birthdayLab.TabIndex = 0;
this.birthdayLab.Text = "生日";
this.birthdayLab.UseVisualStyleBackColor = true;
//
// botNum
//
//
//
//
this.botNum.CustomButton.Image = null;
this.botNum.CustomButton.Location = new System.Drawing.Point(16, 2);
this.botNum.CustomButton.Name = "";
this.botNum.CustomButton.Size = new System.Drawing.Size(21, 21);
this.botNum.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.botNum.CustomButton.TabIndex = 1;
this.botNum.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.botNum.CustomButton.UseSelectable = true;
this.botNum.CustomButton.Visible = false;
this.botNum.Lines = new string[0];
this.botNum.Location = new System.Drawing.Point(107, 347);
this.botNum.MaxLength = 4;
this.botNum.Name = "botNum";
this.botNum.PasswordChar = '\0';
this.botNum.PromptText = "最小";
this.botNum.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.botNum.SelectedText = "";
this.botNum.SelectionLength = 0;
this.botNum.SelectionStart = 0;
this.botNum.ShortcutsEnabled = true;
this.botNum.Size = new System.Drawing.Size(40, 26);
this.botNum.TabIndex = 2;
this.botNum.UseSelectable = true;
this.botNum.WaterMark = "最小";
this.botNum.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.botNum.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
this.botNum.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.onKeyPress);
//
// phonenumberLab
//
this.phonenumberLab.AutoSize = true;
this.phonenumberLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.phonenumberLab.Location = new System.Drawing.Point(9, 198);
this.phonenumberLab.Name = "phonenumberLab";
this.phonenumberLab.Size = new System.Drawing.Size(75, 20);
this.phonenumberLab.TabIndex = 0;
this.phonenumberLab.Text = "手机号";
this.phonenumberLab.UseVisualStyleBackColor = true;
//
// numLab
//
this.numLab.AutoSize = true;
this.numLab.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.numLab.Location = new System.Drawing.Point(9, 353);
this.numLab.Name = "numLab";
this.numLab.Size = new System.Drawing.Size(91, 20);
this.numLab.TabIndex = 0;
this.numLab.Text = "有序数列";
this.numLab.UseVisualStyleBackColor = true;
//
// topNum
//
//
//
//
this.topNum.CustomButton.Image = null;
this.topNum.CustomButton.Location = new System.Drawing.Point(16, 2);
this.topNum.CustomButton.Name = "";
this.topNum.CustomButton.Size = new System.Drawing.Size(21, 21);
this.topNum.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.topNum.CustomButton.TabIndex = 1;
this.topNum.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.topNum.CustomButton.UseSelectable = true;
this.topNum.CustomButton.Visible = false;
this.topNum.Lines = new string[0];
this.topNum.Location = new System.Drawing.Point(171, 347);
this.topNum.MaxLength = 4;
this.topNum.Name = "topNum";
this.topNum.PasswordChar = '\0';
this.topNum.PromptText = "最大";
this.topNum.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.topNum.SelectedText = "";
this.topNum.SelectionLength = 0;
this.topNum.SelectionStart = 0;
this.topNum.ShortcutsEnabled = true;
this.topNum.Size = new System.Drawing.Size(40, 26);
this.topNum.TabIndex = 3;
this.topNum.UseSelectable = true;
this.topNum.WaterMark = "最大";
this.topNum.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.topNum.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
this.topNum.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.onKeyPress);
//
// panel1
//
this.panel1.Controls.Add(this.save);
this.panel1.Controls.Add(this.appendfile);
this.panel1.Controls.Add(this.appendDict);
this.panel1.Controls.Add(this.generateDict);
this.panel1.Controls.Add(this.richTextBox2);
this.panel1.Controls.Add(this.richTextBox1);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.groupBox1);
this.panel1.Controls.Add(this.groupBox2);
this.panel1.Controls.Add(this.groupBox3);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(20, 60);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1013, 559);
this.panel1.TabIndex = 18;
//
// save
//
this.save.Highlight = true;
this.save.Location = new System.Drawing.Point(9, 67);
this.save.Name = "save";
this.save.Size = new System.Drawing.Size(80, 23);
this.save.TabIndex = 19;
this.save.Text = "保存配置";
this.save.Theme = MetroFramework.MetroThemeStyle.Light;
this.save.UseSelectable = true;
this.save.Click += new System.EventHandler(this.save_Click);
//
// appendfile
//
this.appendfile.Highlight = true;
this.appendfile.Location = new System.Drawing.Point(348, 67);
this.appendfile.Name = "appendfile";
this.appendfile.Size = new System.Drawing.Size(80, 23);
this.appendfile.TabIndex = 18;
this.appendfile.Text = "打开";
this.appendfile.Theme = MetroFramework.MetroThemeStyle.Light;
this.appendfile.UseSelectable = true;
this.appendfile.Click += new System.EventHandler(this.appendfile_Click);
//
// appendDict
//
this.appendDict.AutoSize = true;
this.appendDict.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.appendDict.Location = new System.Drawing.Point(348, 40);
this.appendDict.Name = "appendDict";
this.appendDict.Size = new System.Drawing.Size(91, 20);
this.appendDict.TabIndex = 14;
this.appendDict.Text = "追加字典";
this.appendDict.UseVisualStyleBackColor = true;
//
// generateDict
//
this.generateDict.BackColor = System.Drawing.Color.WhiteSmoke;
this.generateDict.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.generateDict.Location = new System.Drawing.Point(803, 37);
this.generateDict.Name = "generateDict";
this.generateDict.Size = new System.Drawing.Size(195, 53);
this.generateDict.TabIndex = 0;
this.generateDict.Text = "生成字典";
this.generateDict.UseVisualStyleBackColor = false;
this.generateDict.Click += new System.EventHandler(this.generateDict_Click);
//
// richTextBox2
//
this.richTextBox2.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTextBox2.Location = new System.Drawing.Point(445, 37);
this.richTextBox2.Name = "richTextBox2";
this.richTextBox2.Size = new System.Drawing.Size(349, 53);
this.richTextBox2.TabIndex = 2;
this.richTextBox2.Text = "";
//
// richTextBox1
//
this.richTextBox1.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTextBox1.Location = new System.Drawing.Point(132, 37);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(198, 53);
this.richTextBox1.TabIndex = 2;
this.richTextBox1.Text = "";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(6, 44);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(104, 16);
this.label2.TabIndex = 1;
this.label2.Text = "字典组合方式";
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// toolStripButton1
//
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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(108, 22);
this.toolStripButton1.Text = "重新加载配置文件";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click_1);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton3
//
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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(110, 22);
this.toolStripButton3.Text = "txt文件转json格式";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// toolStripButton4
//
this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton4.Name = "toolStripButton4";
this.toolStripButton4.Size = new System.Drawing.Size(36, 22);
this.toolStripButton4.Text = "帮助";
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
//
// toolStrip1
//
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1,
this.toolStripSeparator1,
this.toolStripButton3,
this.toolStripSeparator2,
this.toolStripButton4});
this.toolStrip1.Location = new System.Drawing.Point(20, 60);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1013, 25);
this.toolStrip1.TabIndex = 16;
this.toolStrip1.Text = "toolStrip1";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1053, 639);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.panel1);
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = "字典生成器";
this.groupBox2.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox2;
private MetroFramework.Controls.MetroButton button2;
private MetroFramework.Controls.MetroComboBox comboBox2;
private System.Windows.Forms.TreeView treeView1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.GroupBox groupBox1;
private MetroFramework.Controls.MetroButton openFile;
private MetroFramework.Controls.MetroTextBox metroTextBox1;
private MetroFramework.Controls.MetroDateTime dateTimePicker1;
private System.Windows.Forms.CheckBox titleLab;
private MetroFramework.Controls.MetroTextBox titleText;
private System.Windows.Forms.CheckBox siteLab;
private MetroFramework.Controls.MetroTextBox siteText;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.CheckBox nameLab;
private MetroFramework.Controls.MetroTextBox phonenumberText;
private MetroFramework.Controls.MetroTextBox nameText;
private System.Windows.Forms.CheckBox username;
private System.Windows.Forms.CheckBox birthdayLab;
private System.Windows.Forms.CheckBox defineLab;
private MetroFramework.Controls.MetroTextBox botNum;
private System.Windows.Forms.CheckBox phonenumberLab;
private System.Windows.Forms.CheckBox numLab;
private MetroFramework.Controls.MetroTextBox topNum;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.RichTextBox defineText;
private System.Windows.Forms.Button generateDict;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Label label2;
private MetroFramework.Controls.MetroComboBox metroComboBox1;
private System.Windows.Forms.RichTextBox richTextBox2;
private System.Windows.Forms.ListBox BListBox;
private System.Windows.Forms.ListBox CListBox;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem 字符大写并追加ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 首字母大写并追加ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 字符转置并追加ToolStripMenuItem;
private System.Windows.Forms.Timer timer1;
private MetroFramework.Controls.MetroButton appendfile;
private System.Windows.Forms.CheckBox appendDict;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton toolStripButton3;
private System.Windows.Forms.ToolStripButton toolStripButton4;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private MetroFramework.Controls.MetroButton save;
}
}