Winify – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 
2 namespace Winify
3 {
4 partial class SettingsForm
5 {
6 /// <summary>
7 /// Required designer variable.
8 /// </summary>
9 private System.ComponentModel.IContainer components = null;
10  
11 /// <summary>
12 /// Clean up any resources being used.
13 /// </summary>
14 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
15 protected override void Dispose(bool disposing)
16 {
17 if (disposing && (components != null))
18 {
19 components.Dispose();
20 }
21 base.Dispose(disposing);
22 }
23  
24 #region Windows Form Designer generated code
25  
26 /// <summary>
27 /// Required method for Designer support - do not modify
28 /// the contents of this method with the code editor.
29 /// </summary>
30 private void InitializeComponent()
31 {
32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
33 this.tabControl1 = new System.Windows.Forms.TabControl();
3 office 34 this.tabPage2 = new System.Windows.Forms.TabPage();
35 this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
36 this.groupBox3 = new System.Windows.Forms.GroupBox();
4 office 37 this.checkBox1 = new System.Windows.Forms.CheckBox();
1 office 38 this.tabPage1 = new System.Windows.Forms.TabPage();
4 office 39 this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
40 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
41 this.listBox1 = new System.Windows.Forms.ListBox();
42 this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
43 this.button2 = new System.Windows.Forms.Button();
44 this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
1 office 45 this.groupBox1 = new System.Windows.Forms.GroupBox();
3 office 46 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
4 office 47 this.serverPasswordTextBox = new System.Windows.Forms.TextBox();
48 this.label2 = new System.Windows.Forms.Label();
49 this.serverNameTextBox = new System.Windows.Forms.TextBox();
50 this.label5 = new System.Windows.Forms.Label();
3 office 51 this.label4 = new System.Windows.Forms.Label();
4 office 52 this.serverPortTextBox = new System.Windows.Forms.TextBox();
3 office 53 this.label3 = new System.Windows.Forms.Label();
4 office 54 this.serverHostTextBox = new System.Windows.Forms.TextBox();
1 office 55 this.label1 = new System.Windows.Forms.Label();
4 office 56 this.serverUsernameTextBox = new System.Windows.Forms.TextBox();
57 this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
58 this.button1 = new System.Windows.Forms.Button();
1 office 59 this.tabControl1.SuspendLayout();
3 office 60 this.tabPage2.SuspendLayout();
61 this.flowLayoutPanel2.SuspendLayout();
62 this.groupBox3.SuspendLayout();
1 office 63 this.tabPage1.SuspendLayout();
4 office 64 this.tableLayoutPanel3.SuspendLayout();
65 this.tableLayoutPanel1.SuspendLayout();
66 this.tableLayoutPanel6.SuspendLayout();
67 this.tableLayoutPanel4.SuspendLayout();
1 office 68 this.groupBox1.SuspendLayout();
3 office 69 this.tableLayoutPanel2.SuspendLayout();
4 office 70 this.tableLayoutPanel5.SuspendLayout();
1 office 71 this.SuspendLayout();
72 //
73 // tabControl1
74 //
75 this.tabControl1.Controls.Add(this.tabPage2);
76 this.tabControl1.Controls.Add(this.tabPage1);
77 this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
78 this.tabControl1.Location = new System.Drawing.Point(0, 0);
79 this.tabControl1.Name = "tabControl1";
80 this.tabControl1.SelectedIndex = 0;
4 office 81 this.tabControl1.Size = new System.Drawing.Size(554, 286);
1 office 82 this.tabControl1.TabIndex = 0;
83 //
3 office 84 // tabPage2
85 //
86 this.tabPage2.Controls.Add(this.flowLayoutPanel2);
87 this.tabPage2.Location = new System.Drawing.Point(4, 22);
88 this.tabPage2.Name = "tabPage2";
4 office 89 this.tabPage2.Size = new System.Drawing.Size(546, 260);
3 office 90 this.tabPage2.TabIndex = 1;
91 this.tabPage2.Text = "Application";
92 this.tabPage2.UseVisualStyleBackColor = true;
93 //
94 // flowLayoutPanel2
95 //
96 this.flowLayoutPanel2.Controls.Add(this.groupBox3);
97 this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
98 this.flowLayoutPanel2.Location = new System.Drawing.Point(0, 0);
99 this.flowLayoutPanel2.Name = "flowLayoutPanel2";
4 office 100 this.flowLayoutPanel2.Size = new System.Drawing.Size(546, 260);
3 office 101 this.flowLayoutPanel2.TabIndex = 0;
102 //
103 // groupBox3
104 //
105 this.groupBox3.Controls.Add(this.checkBox1);
106 this.groupBox3.Location = new System.Drawing.Point(3, 3);
107 this.groupBox3.Name = "groupBox3";
108 this.groupBox3.Size = new System.Drawing.Size(253, 53);
109 this.groupBox3.TabIndex = 0;
110 this.groupBox3.TabStop = false;
111 this.groupBox3.Text = "Startup";
112 //
4 office 113 // checkBox1
114 //
115 this.checkBox1.AutoSize = true;
116 this.checkBox1.Checked = global::Winify.Properties.Settings.Default.LaunchOnBoot;
117 this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Winify.Properties.Settings.Default, "LaunchOnBoot", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
118 this.checkBox1.Dock = System.Windows.Forms.DockStyle.Fill;
119 this.checkBox1.Location = new System.Drawing.Point(3, 16);
120 this.checkBox1.Name = "checkBox1";
121 this.checkBox1.Size = new System.Drawing.Size(247, 34);
122 this.checkBox1.TabIndex = 0;
123 this.checkBox1.Text = "Launch on Windows boot";
124 this.checkBox1.UseVisualStyleBackColor = true;
125 this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1_CheckedChanged);
126 //
1 office 127 // tabPage1
128 //
4 office 129 this.tabPage1.Controls.Add(this.tableLayoutPanel3);
1 office 130 this.tabPage1.Location = new System.Drawing.Point(4, 22);
131 this.tabPage1.Name = "tabPage1";
132 this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
4 office 133 this.tabPage1.Size = new System.Drawing.Size(546, 260);
1 office 134 this.tabPage1.TabIndex = 0;
4 office 135 this.tabPage1.Text = "Connections";
1 office 136 this.tabPage1.UseVisualStyleBackColor = true;
137 //
4 office 138 // tableLayoutPanel3
1 office 139 //
4 office 140 this.tableLayoutPanel3.ColumnCount = 2;
141 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
142 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
143 this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel1, 0, 0);
144 this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel4, 1, 0);
145 this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
146 this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 3);
147 this.tableLayoutPanel3.Name = "tableLayoutPanel3";
148 this.tableLayoutPanel3.RowCount = 1;
149 this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
150 this.tableLayoutPanel3.Size = new System.Drawing.Size(540, 254);
151 this.tableLayoutPanel3.TabIndex = 2;
1 office 152 //
4 office 153 // tableLayoutPanel1
154 //
155 this.tableLayoutPanel1.ColumnCount = 1;
156 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
157 this.tableLayoutPanel1.Controls.Add(this.listBox1, 0, 0);
158 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel6, 0, 1);
159 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
160 this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
161 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
162 this.tableLayoutPanel1.RowCount = 2;
163 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 85F));
164 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 15F));
165 this.tableLayoutPanel1.Size = new System.Drawing.Size(264, 248);
166 this.tableLayoutPanel1.TabIndex = 1;
167 //
168 // listBox1
169 //
170 this.listBox1.DisplayMember = "Name";
171 this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
172 this.listBox1.FormattingEnabled = true;
173 this.listBox1.Location = new System.Drawing.Point(3, 3);
174 this.listBox1.Name = "listBox1";
175 this.listBox1.Size = new System.Drawing.Size(258, 204);
176 this.listBox1.TabIndex = 0;
177 this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged);
178 //
179 // tableLayoutPanel6
180 //
181 this.tableLayoutPanel6.ColumnCount = 3;
182 this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
183 this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
184 this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
185 this.tableLayoutPanel6.Controls.Add(this.button2, 1, 0);
186 this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
187 this.tableLayoutPanel6.Location = new System.Drawing.Point(3, 213);
188 this.tableLayoutPanel6.Name = "tableLayoutPanel6";
189 this.tableLayoutPanel6.RowCount = 1;
190 this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
191 this.tableLayoutPanel6.Size = new System.Drawing.Size(258, 32);
192 this.tableLayoutPanel6.TabIndex = 1;
193 //
194 // button2
195 //
196 this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
197 this.button2.Location = new System.Drawing.Point(89, 4);
198 this.button2.Name = "button2";
199 this.button2.Size = new System.Drawing.Size(80, 23);
200 this.button2.TabIndex = 0;
201 this.button2.Text = "Remove";
202 this.button2.UseVisualStyleBackColor = true;
203 this.button2.Click += new System.EventHandler(this.Button2_Click);
204 //
205 // tableLayoutPanel4
206 //
207 this.tableLayoutPanel4.ColumnCount = 1;
208 this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
209 this.tableLayoutPanel4.Controls.Add(this.groupBox1, 0, 0);
210 this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel5, 0, 1);
211 this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
212 this.tableLayoutPanel4.Location = new System.Drawing.Point(273, 3);
213 this.tableLayoutPanel4.Name = "tableLayoutPanel4";
214 this.tableLayoutPanel4.RowCount = 2;
215 this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 85F));
216 this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 15F));
217 this.tableLayoutPanel4.Size = new System.Drawing.Size(264, 248);
218 this.tableLayoutPanel4.TabIndex = 2;
219 //
1 office 220 // groupBox1
221 //
222 this.groupBox1.Controls.Add(this.tableLayoutPanel2);
4 office 223 this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
1 office 224 this.groupBox1.Location = new System.Drawing.Point(3, 3);
225 this.groupBox1.Name = "groupBox1";
4 office 226 this.groupBox1.Size = new System.Drawing.Size(258, 204);
1 office 227 this.groupBox1.TabIndex = 0;
228 this.groupBox1.TabStop = false;
229 this.groupBox1.Text = "Server";
230 //
3 office 231 // tableLayoutPanel2
232 //
233 this.tableLayoutPanel2.ColumnCount = 2;
234 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
235 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
4 office 236 this.tableLayoutPanel2.Controls.Add(this.serverPasswordTextBox, 1, 4);
237 this.tableLayoutPanel2.Controls.Add(this.label2, 0, 4);
238 this.tableLayoutPanel2.Controls.Add(this.serverNameTextBox, 1, 0);
239 this.tableLayoutPanel2.Controls.Add(this.label5, 0, 0);
240 this.tableLayoutPanel2.Controls.Add(this.label4, 0, 2);
241 this.tableLayoutPanel2.Controls.Add(this.serverPortTextBox, 1, 2);
242 this.tableLayoutPanel2.Controls.Add(this.label3, 0, 1);
243 this.tableLayoutPanel2.Controls.Add(this.serverHostTextBox, 1, 1);
244 this.tableLayoutPanel2.Controls.Add(this.label1, 0, 3);
245 this.tableLayoutPanel2.Controls.Add(this.serverUsernameTextBox, 1, 3);
3 office 246 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
247 this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
248 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
4 office 249 this.tableLayoutPanel2.RowCount = 5;
250 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
251 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
252 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
253 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
254 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
255 this.tableLayoutPanel2.Size = new System.Drawing.Size(252, 185);
3 office 256 this.tableLayoutPanel2.TabIndex = 0;
257 //
4 office 258 // serverPasswordTextBox
259 //
260 this.serverPasswordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
261 this.serverPasswordTextBox.Location = new System.Drawing.Point(129, 156);
262 this.serverPasswordTextBox.Name = "serverPasswordTextBox";
263 this.serverPasswordTextBox.PasswordChar = '*';
264 this.serverPasswordTextBox.Size = new System.Drawing.Size(120, 20);
265 this.serverPasswordTextBox.TabIndex = 5;
266 //
267 // label2
268 //
269 this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
270 this.label2.AutoSize = true;
271 this.label2.Location = new System.Drawing.Point(3, 160);
272 this.label2.Name = "label2";
273 this.label2.Size = new System.Drawing.Size(120, 13);
274 this.label2.TabIndex = 7;
275 this.label2.Text = "Password";
276 //
277 // serverNameTextBox
278 //
279 this.serverNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
280 this.serverNameTextBox.Location = new System.Drawing.Point(129, 8);
281 this.serverNameTextBox.Name = "serverNameTextBox";
282 this.serverNameTextBox.Size = new System.Drawing.Size(120, 20);
283 this.serverNameTextBox.TabIndex = 1;
284 //
285 // label5
286 //
287 this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
288 this.label5.AutoSize = true;
289 this.label5.Location = new System.Drawing.Point(3, 12);
290 this.label5.Name = "label5";
291 this.label5.Size = new System.Drawing.Size(120, 13);
292 this.label5.TabIndex = 3;
293 this.label5.Text = "Name";
294 //
3 office 295 // label4
296 //
297 this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
298 this.label4.AutoSize = true;
4 office 299 this.label4.Location = new System.Drawing.Point(3, 86);
3 office 300 this.label4.Name = "label4";
4 office 301 this.label4.Size = new System.Drawing.Size(120, 13);
3 office 302 this.label4.TabIndex = 3;
303 this.label4.Text = "Port";
304 //
4 office 305 // serverPortTextBox
306 //
307 this.serverPortTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
308 this.serverPortTextBox.Location = new System.Drawing.Point(129, 82);
309 this.serverPortTextBox.Name = "serverPortTextBox";
310 this.serverPortTextBox.Size = new System.Drawing.Size(120, 20);
311 this.serverPortTextBox.TabIndex = 3;
312 //
3 office 313 // label3
314 //
315 this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
316 this.label3.AutoSize = true;
4 office 317 this.label3.Location = new System.Drawing.Point(3, 49);
3 office 318 this.label3.Name = "label3";
4 office 319 this.label3.Size = new System.Drawing.Size(120, 13);
3 office 320 this.label3.TabIndex = 2;
4 office 321 this.label3.Text = "Host";
3 office 322 //
4 office 323 // serverHostTextBox
1 office 324 //
4 office 325 this.serverHostTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
326 this.serverHostTextBox.Location = new System.Drawing.Point(129, 45);
327 this.serverHostTextBox.Name = "serverHostTextBox";
328 this.serverHostTextBox.Size = new System.Drawing.Size(120, 20);
329 this.serverHostTextBox.TabIndex = 2;
1 office 330 //
331 // label1
332 //
333 this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
334 this.label1.AutoSize = true;
4 office 335 this.label1.Location = new System.Drawing.Point(3, 123);
1 office 336 this.label1.Name = "label1";
4 office 337 this.label1.Size = new System.Drawing.Size(120, 13);
338 this.label1.TabIndex = 5;
1 office 339 this.label1.Text = "Username";
340 //
4 office 341 // serverUsernameTextBox
1 office 342 //
4 office 343 this.serverUsernameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
344 this.serverUsernameTextBox.Location = new System.Drawing.Point(129, 119);
345 this.serverUsernameTextBox.Name = "serverUsernameTextBox";
346 this.serverUsernameTextBox.Size = new System.Drawing.Size(120, 20);
347 this.serverUsernameTextBox.TabIndex = 4;
1 office 348 //
4 office 349 // tableLayoutPanel5
1 office 350 //
4 office 351 this.tableLayoutPanel5.ColumnCount = 3;
352 this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
353 this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
354 this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
355 this.tableLayoutPanel5.Controls.Add(this.button1, 1, 0);
356 this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
357 this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 213);
358 this.tableLayoutPanel5.Name = "tableLayoutPanel5";
359 this.tableLayoutPanel5.RowCount = 1;
360 this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
361 this.tableLayoutPanel5.Size = new System.Drawing.Size(258, 32);
362 this.tableLayoutPanel5.TabIndex = 1;
1 office 363 //
4 office 364 // button1
1 office 365 //
4 office 366 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
367 this.button1.Location = new System.Drawing.Point(89, 4);
368 this.button1.Name = "button1";
369 this.button1.Size = new System.Drawing.Size(80, 23);
370 this.button1.TabIndex = 6;
371 this.button1.Text = "Add";
372 this.button1.UseVisualStyleBackColor = true;
373 this.button1.Click += new System.EventHandler(this.Button1_Click);
1 office 374 //
375 // SettingsForm
376 //
377 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
378 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
4 office 379 this.ClientSize = new System.Drawing.Size(554, 286);
1 office 380 this.Controls.Add(this.tabControl1);
381 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
382 this.Name = "SettingsForm";
3 office 383 this.Text = "Winify: Settings";
4 office 384 this.Shown += new System.EventHandler(this.SettingsForm_Shown);
1 office 385 this.tabControl1.ResumeLayout(false);
3 office 386 this.tabPage2.ResumeLayout(false);
387 this.flowLayoutPanel2.ResumeLayout(false);
388 this.groupBox3.ResumeLayout(false);
389 this.groupBox3.PerformLayout();
1 office 390 this.tabPage1.ResumeLayout(false);
4 office 391 this.tableLayoutPanel3.ResumeLayout(false);
392 this.tableLayoutPanel1.ResumeLayout(false);
393 this.tableLayoutPanel6.ResumeLayout(false);
394 this.tableLayoutPanel4.ResumeLayout(false);
1 office 395 this.groupBox1.ResumeLayout(false);
3 office 396 this.tableLayoutPanel2.ResumeLayout(false);
397 this.tableLayoutPanel2.PerformLayout();
4 office 398 this.tableLayoutPanel5.ResumeLayout(false);
1 office 399 this.ResumeLayout(false);
400  
401 }
402  
403 #endregion
404  
405 private System.Windows.Forms.TabControl tabControl1;
406 private System.Windows.Forms.TabPage tabPage1;
407 private System.Windows.Forms.GroupBox groupBox1;
408 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
409 private System.Windows.Forms.Label label4;
4 office 410 private System.Windows.Forms.TextBox serverHostTextBox;
411 private System.Windows.Forms.TextBox serverPortTextBox;
1 office 412 private System.Windows.Forms.TabPage tabPage2;
413 private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
414 private System.Windows.Forms.GroupBox groupBox3;
415 private System.Windows.Forms.CheckBox checkBox1;
4 office 416 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
417 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
418 private System.Windows.Forms.ListBox listBox1;
419 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
420 private System.Windows.Forms.Button button2;
421 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
422 private System.Windows.Forms.TextBox serverPasswordTextBox;
423 private System.Windows.Forms.Label label2;
424 private System.Windows.Forms.TextBox serverNameTextBox;
425 private System.Windows.Forms.Label label5;
426 private System.Windows.Forms.Label label3;
427 private System.Windows.Forms.Label label1;
428 private System.Windows.Forms.TextBox serverUsernameTextBox;
429 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
430 private System.Windows.Forms.Button button1;
1 office 431 }
432 }