Eml2Pdf / Eml2PdfWinApp / Form1.Designer.cs
Code · 150 lines · 3920 bytes
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
150namespace Eml2PdfWinApp
{
	partial class Form1
	{
		/// <summary>
		///  Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		///  Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		///  Required method for Designer support - do not modify
		///  the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			txtInput = new TextBox();
			txtOutput = new TextBox();
			button1 = new Button();
			button2 = new Button();
			textBox3 = new TextBox();
			txtLog = new TextBox();
			button3 = new Button();
			txtHtml = new TextBox();
			SuspendLayout();
			// 
			// txtInput
			// 
			txtInput.Location = new Point(12, 12);
			txtInput.Name = "txtInput";
			txtInput.PlaceholderText = "input directory";
			txtInput.Size = new Size(269, 23);
			txtInput.TabIndex = 0;
			txtInput.Text = "input";
			// 
			// txtOutput
			// 
			txtOutput.Location = new Point(12, 57);
			txtOutput.Name = "txtOutput";
			txtOutput.PlaceholderText = "output directory";
			txtOutput.Size = new Size(269, 23);
			txtOutput.TabIndex = 1;
			txtOutput.Text = "output";
			// 
			// button1
			// 
			button1.Location = new Point(287, 142);
			button1.Name = "button1";
			button1.Size = new Size(125, 23);
			button1.TabIndex = 2;
			button1.Text = "Eml2Pdf";
			button1.UseVisualStyleBackColor = true;
			button1.Click += Button1_Click;
			// 
			// button2
			// 
			button2.Location = new Point(287, 35);
			button2.Name = "button2";
			button2.Size = new Size(125, 23);
			button2.TabIndex = 3;
			button2.Text = "Eml attachements";
			button2.UseVisualStyleBackColor = true;
			button2.Click += Button2_Click;
			// 
			// textBox3
			// 
			textBox3.Location = new Point(12, 143);
			textBox3.Name = "textBox3";
			textBox3.PlaceholderText = "pdf directory";
			textBox3.Size = new Size(269, 23);
			textBox3.TabIndex = 4;
			textBox3.Text = "pdf";
			// 
			// txtLog
			// 
			txtLog.AcceptsReturn = true;
			txtLog.AcceptsTab = true;
			txtLog.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
			txtLog.Location = new Point(12, 172);
			txtLog.Multiline = true;
			txtLog.Name = "txtLog";
			txtLog.ReadOnly = true;
			txtLog.ScrollBars = ScrollBars.Both;
			txtLog.Size = new Size(508, 251);
			txtLog.TabIndex = 5;
			// 
			// button3
			// 
			button3.Location = new Point(287, 95);
			button3.Name = "button3";
			button3.Size = new Size(125, 23);
			button3.TabIndex = 6;
			button3.Text = "Eml2Html";
			button3.UseVisualStyleBackColor = true;
			button3.Click += ButtonEml2Html_Click;
			// 
			// txtHtml
			// 
			txtHtml.Location = new Point(12, 95);
			txtHtml.Name = "txtHtml";
			txtHtml.PlaceholderText = "output directory";
			txtHtml.Size = new Size(269, 23);
			txtHtml.TabIndex = 7;
			txtHtml.Text = "html";
			// 
			// Form1
			// 
			AutoScaleDimensions = new SizeF(7F, 15F);
			AutoScaleMode = AutoScaleMode.Font;
			ClientSize = new Size(532, 435);
			Controls.Add(txtHtml);
			Controls.Add(button3);
			Controls.Add(txtLog);
			Controls.Add(textBox3);
			Controls.Add(button2);
			Controls.Add(button1);
			Controls.Add(txtOutput);
			Controls.Add(txtInput);
			Name = "Form1";
			Text = "Eml workbench - Annet Zwanenburg";
			ResumeLayout(false);
			PerformLayout();
		}

		#endregion

		private TextBox txtInput;
		private TextBox txtOutput;
		private Button button1;
		private Button button2;
		private TextBox textBox3;
		private TextBox txtLog;
		private Button button3;
		private TextBox txtHtml;
	}
}