-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUF_Outlook.Designer.cs
969 lines (963 loc) · 57.7 KB
/
UF_Outlook.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
namespace SendMail
{
partial class UF_Outlook
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UF_Outlook));
this.Bttn_Przycisk = new MetroFramework.Controls.MetroButton();
this.Bttn_Przycisk2 = new MetroFramework.Controls.MetroButton();
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.nowyToolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.RemoveTabToolStripButton = new System.Windows.Forms.ToolStripButton();
this.otwórzToolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.zapiszToolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.wytnijToolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.kopiujToolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.wklejToolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.plikToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nowyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.otwórzToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.zapiszToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.zapiszjakoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.drukujToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.podglądwydrukuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.zakończToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.edytujToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cofnijToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ponówToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.wytnijToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.kopiujToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.wklejToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.zaznaczwszystkoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
this.dostosujToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.opcjeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.zawartośćToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.indeksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.wyszukajToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.informacjeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.LeftToolStripPanel.SuspendLayout();
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// Bttn_Przycisk
//
this.Bttn_Przycisk.Location = new System.Drawing.Point(435, 12);
this.Bttn_Przycisk.Name = "Bttn_Przycisk";
this.Bttn_Przycisk.Size = new System.Drawing.Size(106, 31);
this.Bttn_Przycisk.TabIndex = 0;
this.Bttn_Przycisk.Text = "Test";
this.Bttn_Przycisk.Theme = MetroFramework.MetroThemeStyle.Dark;
this.Bttn_Przycisk.UseSelectable = true;
this.Bttn_Przycisk.Click += new System.EventHandler(this.Bttn_Przycisk_Click);
//
// Bttn_Przycisk2
//
this.Bttn_Przycisk2.Location = new System.Drawing.Point(312, 12);
this.Bttn_Przycisk2.Name = "Bttn_Przycisk2";
this.Bttn_Przycisk2.Size = new System.Drawing.Size(106, 31);
this.Bttn_Przycisk2.TabIndex = 1;
this.Bttn_Przycisk2.Text = "Test";
this.Bttn_Przycisk2.Theme = MetroFramework.MetroThemeStyle.Dark;
this.Bttn_Przycisk2.UseSelectable = true;
this.Bttn_Przycisk2.Click += new System.EventHandler(this.Bttn_Przycisk2_Click);
//
// toolStripContainer1
//
//
// toolStripContainer1.BottomToolStripPanel
//
this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStrip1);
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Controls.Add(this.tabControl1);
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(763, 378);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
//
// toolStripContainer1.LeftToolStripPanel
//
this.toolStripContainer1.LeftToolStripPanel.Controls.Add(this.toolStrip1);
this.toolStripContainer1.Location = new System.Drawing.Point(20, 60);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(787, 449);
this.toolStripContainer1.TabIndex = 2;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// toolStripContainer1.TopToolStripPanel
//
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStrip1);
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip2);
//
// statusStrip1
//
this.statusStrip1.Dock = System.Windows.Forms.DockStyle.None;
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(0, 0);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(787, 22);
this.statusStrip1.TabIndex = 0;
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(13, 17);
this.toolStripStatusLabel1.Text = "0";
//
// tabControl1
//
this.tabControl1.Cursor = System.Windows.Forms.Cursors.IBeam;
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.Size = new System.Drawing.Size(763, 378);
this.tabControl1.TabIndex = 0;
//
// toolStrip1
//
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.nowyToolStripButton1,
this.RemoveTabToolStripButton,
this.otwórzToolStripButton1,
this.zapiszToolStripButton1,
this.toolStripSeparator8,
this.wytnijToolStripButton1,
this.kopiujToolStripButton1,
this.wklejToolStripButton1,
this.toolStripSeparator9});
this.toolStrip1.Location = new System.Drawing.Point(0, 3);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(24, 183);
this.toolStrip1.TabIndex = 0;
//
// nowyToolStripButton1
//
this.nowyToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.nowyToolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("nowyToolStripButton1.Image")));
this.nowyToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.nowyToolStripButton1.Name = "nowyToolStripButton1";
this.nowyToolStripButton1.Size = new System.Drawing.Size(22, 20);
this.nowyToolStripButton1.Text = "&Nowy";
this.nowyToolStripButton1.Click += new System.EventHandler(this.nowyToolStripButton1_Click);
//
// RemoveTabToolStripButton
//
this.RemoveTabToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.RemoveTabToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("RemoveTabToolStripButton.Image")));
this.RemoveTabToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.RemoveTabToolStripButton.Name = "RemoveTabToolStripButton";
this.RemoveTabToolStripButton.Size = new System.Drawing.Size(22, 19);
this.RemoveTabToolStripButton.Text = "X";
this.RemoveTabToolStripButton.Click += new System.EventHandler(this.RemoveTabToolStripButton_Click);
//
// otwórzToolStripButton1
//
this.otwórzToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.otwórzToolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("otwórzToolStripButton1.Image")));
this.otwórzToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.otwórzToolStripButton1.Name = "otwórzToolStripButton1";
this.otwórzToolStripButton1.Size = new System.Drawing.Size(22, 20);
this.otwórzToolStripButton1.Text = "&Otwórz";
this.otwórzToolStripButton1.Click += new System.EventHandler(this.otwórzToolStripButton1_Click);
//
// zapiszToolStripButton1
//
this.zapiszToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.zapiszToolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("zapiszToolStripButton1.Image")));
this.zapiszToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.zapiszToolStripButton1.Name = "zapiszToolStripButton1";
this.zapiszToolStripButton1.Size = new System.Drawing.Size(22, 20);
this.zapiszToolStripButton1.Text = "&Zapisz";
this.zapiszToolStripButton1.Click += new System.EventHandler(this.zapiszToolStripButton1_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(22, 6);
//
// wytnijToolStripButton1
//
this.wytnijToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.wytnijToolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("wytnijToolStripButton1.Image")));
this.wytnijToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.wytnijToolStripButton1.Name = "wytnijToolStripButton1";
this.wytnijToolStripButton1.Size = new System.Drawing.Size(22, 20);
this.wytnijToolStripButton1.Text = "&Wytnij";
this.wytnijToolStripButton1.Click += new System.EventHandler(this.wytnijToolStripButton1_Click);
//
// kopiujToolStripButton1
//
this.kopiujToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.kopiujToolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("kopiujToolStripButton1.Image")));
this.kopiujToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.kopiujToolStripButton1.Name = "kopiujToolStripButton1";
this.kopiujToolStripButton1.Size = new System.Drawing.Size(22, 20);
this.kopiujToolStripButton1.Text = "&Kopiuj";
this.kopiujToolStripButton1.Click += new System.EventHandler(this.kopiujToolStripButton1_Click);
//
// wklejToolStripButton1
//
this.wklejToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.wklejToolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("wklejToolStripButton1.Image")));
this.wklejToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.wklejToolStripButton1.Name = "wklejToolStripButton1";
this.wklejToolStripButton1.Size = new System.Drawing.Size(22, 20);
this.wklejToolStripButton1.Text = "&Wklej";
this.wklejToolStripButton1.Click += new System.EventHandler(this.wklejToolStripButton1_Click);
//
// toolStripSeparator9
//
this.toolStripSeparator9.Name = "toolStripSeparator9";
this.toolStripSeparator9.Size = new System.Drawing.Size(22, 6);
//
// menuStrip1
//
this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.plikToolStripMenuItem,
this.edytujToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(787, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// plikToolStripMenuItem
//
this.plikToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.nowyToolStripMenuItem,
this.otwórzToolStripMenuItem,
this.toolStripSeparator,
this.zapiszToolStripMenuItem,
this.zapiszjakoToolStripMenuItem,
this.toolStripSeparator1,
this.drukujToolStripMenuItem,
this.podglądwydrukuToolStripMenuItem,
this.toolStripSeparator2,
this.zakończToolStripMenuItem});
this.plikToolStripMenuItem.Name = "plikToolStripMenuItem";
this.plikToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
this.plikToolStripMenuItem.Text = "&Plik";
//
// nowyToolStripMenuItem
//
this.nowyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("nowyToolStripMenuItem.Image")));
this.nowyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.nowyToolStripMenuItem.Name = "nowyToolStripMenuItem";
this.nowyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.nowyToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.nowyToolStripMenuItem.Text = "&Nowy";
this.nowyToolStripMenuItem.Click += new System.EventHandler(this.nowyToolStripMenuItem_Click);
//
// otwórzToolStripMenuItem
//
this.otwórzToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("otwórzToolStripMenuItem.Image")));
this.otwórzToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.otwórzToolStripMenuItem.Name = "otwórzToolStripMenuItem";
this.otwórzToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.otwórzToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.otwórzToolStripMenuItem.Text = "&Otwórz";
this.otwórzToolStripMenuItem.Click += new System.EventHandler(this.otwórzToolStripMenuItem_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(164, 6);
//
// zapiszToolStripMenuItem
//
this.zapiszToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("zapiszToolStripMenuItem.Image")));
this.zapiszToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.zapiszToolStripMenuItem.Name = "zapiszToolStripMenuItem";
this.zapiszToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.zapiszToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.zapiszToolStripMenuItem.Text = "&Zapisz";
this.zapiszToolStripMenuItem.Click += new System.EventHandler(this.zapiszToolStripMenuItem_Click);
//
// zapiszjakoToolStripMenuItem
//
this.zapiszjakoToolStripMenuItem.Name = "zapiszjakoToolStripMenuItem";
this.zapiszjakoToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.zapiszjakoToolStripMenuItem.Text = "&Zapisz jako";
this.zapiszjakoToolStripMenuItem.Click += new System.EventHandler(this.zapiszjakoToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(164, 6);
//
// drukujToolStripMenuItem
//
this.drukujToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("drukujToolStripMenuItem.Image")));
this.drukujToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.drukujToolStripMenuItem.Name = "drukujToolStripMenuItem";
this.drukujToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
this.drukujToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.drukujToolStripMenuItem.Text = "&Drukuj";
//
// podglądwydrukuToolStripMenuItem
//
this.podglądwydrukuToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("podglądwydrukuToolStripMenuItem.Image")));
this.podglądwydrukuToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.podglądwydrukuToolStripMenuItem.Name = "podglądwydrukuToolStripMenuItem";
this.podglądwydrukuToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.podglądwydrukuToolStripMenuItem.Text = "&Podgląd wydruku";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(164, 6);
//
// zakończToolStripMenuItem
//
this.zakończToolStripMenuItem.Name = "zakończToolStripMenuItem";
this.zakończToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.zakończToolStripMenuItem.Text = "&Zakończ";
//
// edytujToolStripMenuItem
//
this.edytujToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cofnijToolStripMenuItem,
this.ponówToolStripMenuItem,
this.toolStripSeparator3,
this.wytnijToolStripMenuItem,
this.kopiujToolStripMenuItem,
this.wklejToolStripMenuItem,
this.toolStripSeparator4,
this.zaznaczwszystkoToolStripMenuItem});
this.edytujToolStripMenuItem.Name = "edytujToolStripMenuItem";
this.edytujToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
this.edytujToolStripMenuItem.Text = "&Edytuj";
//
// cofnijToolStripMenuItem
//
this.cofnijToolStripMenuItem.Name = "cofnijToolStripMenuItem";
this.cofnijToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
this.cofnijToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.cofnijToolStripMenuItem.Text = "&Cofnij";
this.cofnijToolStripMenuItem.Click += new System.EventHandler(this.cofnijToolStripMenuItem_Click);
//
// ponówToolStripMenuItem
//
this.ponówToolStripMenuItem.Name = "ponówToolStripMenuItem";
this.ponówToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
this.ponówToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.ponówToolStripMenuItem.Text = "&Ponów";
this.ponówToolStripMenuItem.Click += new System.EventHandler(this.ponówToolStripMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(163, 6);
//
// wytnijToolStripMenuItem
//
this.wytnijToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("wytnijToolStripMenuItem.Image")));
this.wytnijToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.wytnijToolStripMenuItem.Name = "wytnijToolStripMenuItem";
this.wytnijToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
this.wytnijToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.wytnijToolStripMenuItem.Text = "Wy&tnij";
this.wytnijToolStripMenuItem.Click += new System.EventHandler(this.wytnijToolStripMenuItem_Click);
//
// kopiujToolStripMenuItem
//
this.kopiujToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("kopiujToolStripMenuItem.Image")));
this.kopiujToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.kopiujToolStripMenuItem.Name = "kopiujToolStripMenuItem";
this.kopiujToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.kopiujToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.kopiujToolStripMenuItem.Text = "&Kopiuj";
this.kopiujToolStripMenuItem.Click += new System.EventHandler(this.kopiujToolStripMenuItem_Click);
//
// wklejToolStripMenuItem
//
this.wklejToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("wklejToolStripMenuItem.Image")));
this.wklejToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.wklejToolStripMenuItem.Name = "wklejToolStripMenuItem";
this.wklejToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
this.wklejToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.wklejToolStripMenuItem.Text = "&Wklej";
this.wklejToolStripMenuItem.Click += new System.EventHandler(this.wklejToolStripMenuItem_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(163, 6);
//
// zaznaczwszystkoToolStripMenuItem
//
this.zaznaczwszystkoToolStripMenuItem.Name = "zaznaczwszystkoToolStripMenuItem";
this.zaznaczwszystkoToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.zaznaczwszystkoToolStripMenuItem.Text = "&Zaznacz wszystko";
this.zaznaczwszystkoToolStripMenuItem.Click += new System.EventHandler(this.zaznaczwszystkoToolStripMenuItem_Click);
//
// toolStrip2
//
this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1,
this.toolStripButton2,
this.toolStripButton3,
this.toolStripButton4,
this.toolStripSeparator6,
this.toolStripButton5,
this.toolStripButton6,
this.toolStripSeparator7,
this.toolStripButton7,
this.toolStripButton8,
this.toolStripSeparator11,
this.toolStripButton9,
this.toolStripDropDownButton1,
this.toolStripSeparator10,
this.toolStripComboBox1,
this.toolStripComboBox2,
this.toolStripSeparator14,
this.toolStripButton10,
this.toolStripButton11,
this.toolStripButton12,
this.toolStripButton13});
this.toolStrip2.Location = new System.Drawing.Point(3, 24);
this.toolStrip2.Name = "toolStrip2";
this.toolStrip2.Size = new System.Drawing.Size(689, 25);
this.toolStrip2.TabIndex = 1;
//
// toolStripButton1
//
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
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(23, 22);
this.toolStripButton1.Text = "B";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// toolStripButton2
//
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
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 = "I";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// toolStripButton3
//
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
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 = "U";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// toolStripButton4
//
this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton4.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Strikeout, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
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(23, 22);
this.toolStripButton4.Text = "S";
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton5
//
this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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 = "A";
this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
//
// toolStripButton6
//
this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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 = "a";
this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton7
//
this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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(27, 22);
this.toolStripButton7.Text = "A+";
this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
//
// toolStripButton8
//
this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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(24, 22);
this.toolStripButton8.Text = "A-";
this.toolStripButton8.Click += new System.EventHandler(this.toolStripButton8_Click);
//
// toolStripSeparator11
//
this.toolStripSeparator11.Name = "toolStripSeparator11";
this.toolStripSeparator11.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton9
//
this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton9.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.toolStripButton9.ForeColor = System.Drawing.Color.Red;
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 = "A";
this.toolStripButton9.Click += new System.EventHandler(this.toolStripButton9_Click);
//
// toolStripDropDownButton1
//
this.toolStripDropDownButton1.BackColor = System.Drawing.Color.Lime;
this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripDropDownButton1.Font = new System.Drawing.Font("Wingdings", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(2)));
this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
this.toolStripDropDownButton1.Size = new System.Drawing.Size(32, 22);
this.toolStripDropDownButton1.Text = "!";
this.toolStripDropDownButton1.Click += new System.EventHandler(this.toolStripDropDownButton1_Click);
//
// toolStripSeparator10
//
this.toolStripSeparator10.Name = "toolStripSeparator10";
this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
//
// toolStripComboBox1
//
this.toolStripComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.toolStripComboBox1.Name = "toolStripComboBox1";
this.toolStripComboBox1.Size = new System.Drawing.Size(190, 25);
this.toolStripComboBox1.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox1_SelectedIndexChanged);
//
// toolStripComboBox2
//
this.toolStripComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.toolStripComboBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.toolStripComboBox2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.toolStripComboBox2.Name = "toolStripComboBox2";
this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
//
// toolStripSeparator14
//
this.toolStripSeparator14.Name = "toolStripSeparator14";
this.toolStripSeparator14.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton10
//
this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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 = "L";
this.toolStripButton10.Click += new System.EventHandler(this.toolStripButton10_Click);
//
// toolStripButton11
//
this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
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 = "M";
this.toolStripButton11.Click += new System.EventHandler(this.toolStripButton11_Click);
//
// toolStripButton12
//
this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton12.Name = "toolStripButton12";
this.toolStripButton12.Size = new System.Drawing.Size(23, 22);
this.toolStripButton12.Text = "R";
this.toolStripButton12.Click += new System.EventHandler(this.toolStripButton12_Click);
//
// toolStripButton13
//
this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton13.Name = "toolStripButton13";
this.toolStripButton13.Size = new System.Drawing.Size(28, 22);
this.toolStripButton13.Text = "Par";
this.toolStripButton13.Click += new System.EventHandler(this.toolStripButton13_Click);
//
// dostosujToolStripMenuItem
//
this.dostosujToolStripMenuItem.Name = "dostosujToolStripMenuItem";
this.dostosujToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
this.dostosujToolStripMenuItem.Text = "&Dostosuj";
//
// opcjeToolStripMenuItem
//
this.opcjeToolStripMenuItem.Name = "opcjeToolStripMenuItem";
this.opcjeToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
this.opcjeToolStripMenuItem.Text = "&Opcje";
//
// zawartośćToolStripMenuItem
//
this.zawartośćToolStripMenuItem.Name = "zawartośćToolStripMenuItem";
this.zawartośćToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.zawartośćToolStripMenuItem.Text = "&Zawartość";
//
// indeksToolStripMenuItem
//
this.indeksToolStripMenuItem.Name = "indeksToolStripMenuItem";
this.indeksToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.indeksToolStripMenuItem.Text = "&Indeks";
//
// wyszukajToolStripMenuItem
//
this.wyszukajToolStripMenuItem.Name = "wyszukajToolStripMenuItem";
this.wyszukajToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.wyszukajToolStripMenuItem.Text = "&Wyszukaj";
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(149, 6);
//
// informacjeToolStripMenuItem
//
this.informacjeToolStripMenuItem.Name = "informacjeToolStripMenuItem";
this.informacjeToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.informacjeToolStripMenuItem.Text = "&Informacje...";
//
// saveFileDialog1
//
this.saveFileDialog1.Filter = "Text Files|*.txt|VB Files|*.vb|C# Files|*.cs|All Files|*.* ";
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.Filter = "Text Files|*.txt|VB Files|*.vb|C# Files|*.cs|All Files|*.* ";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1,
this.toolStripMenuItem2,
this.toolStripSeparator12,
this.toolStripMenuItem3,
this.toolStripMenuItem4,
this.toolStripMenuItem5,
this.toolStripSeparator13,
this.toolStripMenuItem6,
this.toolStripMenuItem7,
this.toolStripMenuItem8,
this.toolStripMenuItem9});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(167, 214);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem1.Text = "Undo";
this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem2.Text = "Redo";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripSeparator12
//
this.toolStripSeparator12.Name = "toolStripSeparator12";
this.toolStripSeparator12.Size = new System.Drawing.Size(163, 6);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem3.Text = "Cut";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// toolStripMenuItem4
//
this.toolStripMenuItem4.Name = "toolStripMenuItem4";
this.toolStripMenuItem4.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem4.Text = "Copy";
this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click);
//
// toolStripMenuItem5
//
this.toolStripMenuItem5.Name = "toolStripMenuItem5";
this.toolStripMenuItem5.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem5.Text = "Paste";
this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click);
//
// toolStripSeparator13
//
this.toolStripSeparator13.Name = "toolStripSeparator13";
this.toolStripSeparator13.Size = new System.Drawing.Size(163, 6);
//
// toolStripMenuItem6
//
this.toolStripMenuItem6.Name = "toolStripMenuItem6";
this.toolStripMenuItem6.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem6.Text = "Save";
this.toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItem6_Click);
//
// toolStripMenuItem7
//
this.toolStripMenuItem7.Name = "toolStripMenuItem7";
this.toolStripMenuItem7.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem7.Text = "Close";
this.toolStripMenuItem7.Click += new System.EventHandler(this.toolStripMenuItem7_Click);
//
// toolStripMenuItem8
//
this.toolStripMenuItem8.Name = "toolStripMenuItem8";
this.toolStripMenuItem8.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem8.Text = "Close All";
this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click);
//
// toolStripMenuItem9
//
this.toolStripMenuItem9.Name = "toolStripMenuItem9";
this.toolStripMenuItem9.Size = new System.Drawing.Size(166, 22);
this.toolStripMenuItem9.Text = "Close All But This";
this.toolStripMenuItem9.Click += new System.EventHandler(this.toolStripMenuItem9_Click);
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// UF_Outlook
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(827, 529);
this.Controls.Add(this.toolStripContainer1);
this.Controls.Add(this.Bttn_Przycisk2);
this.Controls.Add(this.Bttn_Przycisk);
this.MainMenuStrip = this.menuStrip1;
this.Name = "UF_Outlook";
this.Style = MetroFramework.MetroColorStyle.Pink;
this.Text = "Send email";
this.Theme = MetroFramework.MetroThemeStyle.Dark;
this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.LeftToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.LeftToolStripPanel.PerformLayout();
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.toolStrip2.ResumeLayout(false);
this.toolStrip2.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private MetroFramework.Controls.MetroButton Bttn_Przycisk;
private MetroFramework.Controls.MetroButton Bttn_Przycisk2;
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStrip toolStrip2;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ToolStripButton nowyToolStripButton1;
private System.Windows.Forms.ToolStripButton otwórzToolStripButton1;
private System.Windows.Forms.ToolStripButton zapiszToolStripButton1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripButton wytnijToolStripButton1;
private System.Windows.Forms.ToolStripButton kopiujToolStripButton1;
private System.Windows.Forms.ToolStripButton wklejToolStripButton1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
private System.Windows.Forms.ToolStripMenuItem plikToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem nowyToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem otwórzToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private System.Windows.Forms.ToolStripMenuItem zapiszToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem zapiszjakoToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem drukujToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem podglądwydrukuToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem zakończToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem edytujToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cofnijToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ponówToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem wytnijToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem kopiujToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem wklejToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem zaznaczwszystkoToolStripMenuItem;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.ToolStripButton RemoveTabToolStripButton;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripButton toolStripButton2;
private System.Windows.Forms.ToolStripButton toolStripButton3;
private System.Windows.Forms.ToolStripButton toolStripButton4;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripButton toolStripButton5;
private System.Windows.Forms.ToolStripButton toolStripButton6;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripButton toolStripButton7;
private System.Windows.Forms.ToolStripButton toolStripButton8;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
private System.Windows.Forms.ToolStripButton toolStripButton9;
private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
private System.Windows.Forms.ToolStripComboBox toolStripComboBox1;
private System.Windows.Forms.ToolStripComboBox toolStripComboBox2;
private System.Windows.Forms.ToolStripMenuItem dostosujToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem opcjeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem zawartośćToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem indeksToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem wyszukajToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private System.Windows.Forms.ToolStripMenuItem informacjeToolStripMenuItem;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator13;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem9;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
private System.Windows.Forms.ToolStripButton toolStripButton10;
private System.Windows.Forms.ToolStripButton toolStripButton11;
private System.Windows.Forms.ToolStripButton toolStripButton12;
private System.Windows.Forms.ToolStripButton toolStripButton13;
}
}