-
Notifications
You must be signed in to change notification settings - Fork 0
/
SettingsForm.Designer.cs
480 lines (473 loc) · 31.9 KB
/
SettingsForm.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
namespace RAMLite
{
partial class SettingsForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
this.ButtonReset = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.TableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.LabelHotkeyToCleanMemory = new System.Windows.Forms.Label();
this.HotkeyToCleanMemory = new System.Windows.Forms.TextBox();
this.CheckBoxEnableClearingOfTheStandbyList = new System.Windows.Forms.CheckBox();
this.CheckBoxEnableEmptyingOfTheWorkingSet = new System.Windows.Forms.CheckBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.TableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.CheckBoxEnableCustomTimerResolution = new System.Windows.Forms.CheckBox();
this.DesiredTimerResolution = new System.Windows.Forms.NumericUpDown();
this.LabelDesiredTimerResolution = new System.Windows.Forms.Label();
this.CheckBoxEnableTimer = new System.Windows.Forms.CheckBox();
this.ButtonClose = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.TableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.TimerPollingInterval = new System.Windows.Forms.ComboBox();
this.LabelTimerPollingInterval = new System.Windows.Forms.Label();
this.GroupBoxStartupSettings = new System.Windows.Forms.GroupBox();
this.TableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.OnTop = new System.Windows.Forms.CheckBox();
this.CheckBoxStartMemoryCleanerOnSystemStartup = new System.Windows.Forms.CheckBox();
this.CheckBoxStartTimerResolutionAutomatically = new System.Windows.Forms.CheckBox();
this.CheckBoxStartMinimized = new System.Windows.Forms.CheckBox();
this.tmrFlag = new System.Windows.Forms.Timer(this.components);
this.groupBox1.SuspendLayout();
this.TableLayoutPanel1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.TableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DesiredTimerResolution)).BeginInit();
this.groupBox3.SuspendLayout();
this.TableLayoutPanel3.SuspendLayout();
this.GroupBoxStartupSettings.SuspendLayout();
this.TableLayoutPanel4.SuspendLayout();
this.SuspendLayout();
//
// ButtonReset
//
this.ButtonReset.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.ButtonReset.Location = new System.Drawing.Point(10, 415);
this.ButtonReset.Name = "ButtonReset";
this.ButtonReset.Size = new System.Drawing.Size(75, 23);
this.ButtonReset.TabIndex = 53;
this.ButtonReset.Text = "Reset";
this.ButtonReset.UseVisualStyleBackColor = true;
this.ButtonReset.Click += new System.EventHandler(this.ButtonReset_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.TableLayoutPanel1);
this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupBox1.Location = new System.Drawing.Point(10, 8);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(312, 98);
this.groupBox1.TabIndex = 55;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Settaggi di pulizia ";
//
// TableLayoutPanel1
//
this.TableLayoutPanel1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.TableLayoutPanel1.ColumnCount = 2;
this.TableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 72.72727F));
this.TableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.27273F));
this.TableLayoutPanel1.Controls.Add(this.LabelHotkeyToCleanMemory, 0, 0);
this.TableLayoutPanel1.Controls.Add(this.HotkeyToCleanMemory, 1, 0);
this.TableLayoutPanel1.Controls.Add(this.CheckBoxEnableClearingOfTheStandbyList, 0, 1);
this.TableLayoutPanel1.Controls.Add(this.CheckBoxEnableEmptyingOfTheWorkingSet, 0, 2);
this.TableLayoutPanel1.Location = new System.Drawing.Point(6, 19);
this.TableLayoutPanel1.Name = "TableLayoutPanel1";
this.TableLayoutPanel1.RowCount = 3;
this.TableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel1.Size = new System.Drawing.Size(300, 73);
this.TableLayoutPanel1.TabIndex = 61;
//
// LabelHotkeyToCleanMemory
//
this.LabelHotkeyToCleanMemory.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.LabelHotkeyToCleanMemory.AutoSize = true;
this.LabelHotkeyToCleanMemory.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.LabelHotkeyToCleanMemory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.LabelHotkeyToCleanMemory.Location = new System.Drawing.Point(3, 5);
this.LabelHotkeyToCleanMemory.Name = "LabelHotkeyToCleanMemory";
this.LabelHotkeyToCleanMemory.Size = new System.Drawing.Size(74, 13);
this.LabelHotkeyToCleanMemory.TabIndex = 23;
this.LabelHotkeyToCleanMemory.Text = "Hotkey Pulizia";
this.LabelHotkeyToCleanMemory.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// HotkeyToCleanMemory
//
this.HotkeyToCleanMemory.Location = new System.Drawing.Point(221, 3);
this.HotkeyToCleanMemory.Name = "HotkeyToCleanMemory";
this.HotkeyToCleanMemory.ReadOnly = true;
this.HotkeyToCleanMemory.Size = new System.Drawing.Size(76, 20);
this.HotkeyToCleanMemory.TabIndex = 27;
this.HotkeyToCleanMemory.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyToCleanMemory_KeyDown);
//
// CheckBoxEnableClearingOfTheStandbyList
//
this.CheckBoxEnableClearingOfTheStandbyList.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxEnableClearingOfTheStandbyList.AutoSize = true;
this.CheckBoxEnableClearingOfTheStandbyList.Checked = true;
this.CheckBoxEnableClearingOfTheStandbyList.CheckState = System.Windows.Forms.CheckState.Checked;
this.CheckBoxEnableClearingOfTheStandbyList.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxEnableClearingOfTheStandbyList.Location = new System.Drawing.Point(3, 27);
this.CheckBoxEnableClearingOfTheStandbyList.Name = "CheckBoxEnableClearingOfTheStandbyList";
this.CheckBoxEnableClearingOfTheStandbyList.Size = new System.Drawing.Size(147, 18);
this.CheckBoxEnableClearingOfTheStandbyList.TabIndex = 25;
this.CheckBoxEnableClearingOfTheStandbyList.Text = "Abilita pulizia standby list";
this.CheckBoxEnableClearingOfTheStandbyList.UseVisualStyleBackColor = true;
this.CheckBoxEnableClearingOfTheStandbyList.CheckedChanged += new System.EventHandler(this.CheckBoxEnableClearingOfTheStandbyList_CheckedChanged);
this.CheckBoxEnableClearingOfTheStandbyList.MouseLeave += new System.EventHandler(this.CheckBoxEnableClearingOfTheStandbyList_MouseLeave);
this.CheckBoxEnableClearingOfTheStandbyList.MouseHover += new System.EventHandler(this.CheckBoxEnableClearingOfTheStandbyList_MouseHover);
//
// CheckBoxEnableEmptyingOfTheWorkingSet
//
this.CheckBoxEnableEmptyingOfTheWorkingSet.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxEnableEmptyingOfTheWorkingSet.AutoSize = true;
this.CheckBoxEnableEmptyingOfTheWorkingSet.Checked = true;
this.CheckBoxEnableEmptyingOfTheWorkingSet.CheckState = System.Windows.Forms.CheckState.Checked;
this.CheckBoxEnableEmptyingOfTheWorkingSet.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxEnableEmptyingOfTheWorkingSet.Location = new System.Drawing.Point(3, 51);
this.CheckBoxEnableEmptyingOfTheWorkingSet.Name = "CheckBoxEnableEmptyingOfTheWorkingSet";
this.CheckBoxEnableEmptyingOfTheWorkingSet.Size = new System.Drawing.Size(118, 18);
this.CheckBoxEnableEmptyingOfTheWorkingSet.TabIndex = 26;
this.CheckBoxEnableEmptyingOfTheWorkingSet.Text = "Pulizia Ram in uso";
this.CheckBoxEnableEmptyingOfTheWorkingSet.UseVisualStyleBackColor = true;
this.CheckBoxEnableEmptyingOfTheWorkingSet.CheckedChanged += new System.EventHandler(this.CheckBoxEnableEmptyingOfTheWorkingSet_CheckedChanged);
this.CheckBoxEnableEmptyingOfTheWorkingSet.MouseLeave += new System.EventHandler(this.CheckBoxEnableEmptyingOfTheWorkingSet_MouseLeave);
this.CheckBoxEnableEmptyingOfTheWorkingSet.MouseHover += new System.EventHandler(this.CheckBoxEnableEmptyingOfTheWorkingSet_MouseHover);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.TableLayoutPanel2);
this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupBox2.Location = new System.Drawing.Point(10, 112);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(312, 72);
this.groupBox2.TabIndex = 56;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Settaggi timer ";
//
// TableLayoutPanel2
//
this.TableLayoutPanel2.Anchor = System.Windows.Forms.AnchorStyles.None;
this.TableLayoutPanel2.ColumnCount = 2;
this.TableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 72.72727F));
this.TableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.27273F));
this.TableLayoutPanel2.Controls.Add(this.CheckBoxEnableCustomTimerResolution, 0, 1);
this.TableLayoutPanel2.Controls.Add(this.DesiredTimerResolution, 1, 0);
this.TableLayoutPanel2.Controls.Add(this.LabelDesiredTimerResolution, 0, 0);
this.TableLayoutPanel2.Location = new System.Drawing.Point(6, 16);
this.TableLayoutPanel2.Name = "TableLayoutPanel2";
this.TableLayoutPanel2.RowCount = 2;
this.TableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.TableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.TableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel2.Size = new System.Drawing.Size(300, 50);
this.TableLayoutPanel2.TabIndex = 34;
//
// CheckBoxEnableCustomTimerResolution
//
this.CheckBoxEnableCustomTimerResolution.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxEnableCustomTimerResolution.AutoSize = true;
this.CheckBoxEnableCustomTimerResolution.Checked = true;
this.CheckBoxEnableCustomTimerResolution.CheckState = System.Windows.Forms.CheckState.Checked;
this.CheckBoxEnableCustomTimerResolution.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxEnableCustomTimerResolution.Location = new System.Drawing.Point(3, 28);
this.CheckBoxEnableCustomTimerResolution.Name = "CheckBoxEnableCustomTimerResolution";
this.CheckBoxEnableCustomTimerResolution.Size = new System.Drawing.Size(162, 18);
this.CheckBoxEnableCustomTimerResolution.TabIndex = 33;
this.CheckBoxEnableCustomTimerResolution.Text = "Abilita Timer personalizzato ";
this.CheckBoxEnableCustomTimerResolution.UseVisualStyleBackColor = true;
this.CheckBoxEnableCustomTimerResolution.CheckedChanged += new System.EventHandler(this.CheckBoxEnableCustomTimerResolution_CheckedChanged);
//
// DesiredTimerResolution
//
this.DesiredTimerResolution.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.DesiredTimerResolution.Location = new System.Drawing.Point(221, 3);
this.DesiredTimerResolution.Maximum = new decimal(new int[] {
156250,
0,
0,
0});
this.DesiredTimerResolution.Name = "DesiredTimerResolution";
this.DesiredTimerResolution.Size = new System.Drawing.Size(76, 20);
this.DesiredTimerResolution.TabIndex = 32;
this.DesiredTimerResolution.Value = new decimal(new int[] {
5000,
0,
0,
0});
this.DesiredTimerResolution.ValueChanged += new System.EventHandler(this.DesiredTimerResolution_ValueChanged);
//
// LabelDesiredTimerResolution
//
this.LabelDesiredTimerResolution.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.LabelDesiredTimerResolution.AutoSize = true;
this.LabelDesiredTimerResolution.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.LabelDesiredTimerResolution.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.LabelDesiredTimerResolution.Location = new System.Drawing.Point(3, 6);
this.LabelDesiredTimerResolution.Name = "LabelDesiredTimerResolution";
this.LabelDesiredTimerResolution.Size = new System.Drawing.Size(89, 13);
this.LabelDesiredTimerResolution.TabIndex = 22;
this.LabelDesiredTimerResolution.Text = "Risoluzione timer ";
this.LabelDesiredTimerResolution.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// CheckBoxEnableTimer
//
this.CheckBoxEnableTimer.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxEnableTimer.AutoSize = true;
this.CheckBoxEnableTimer.Checked = true;
this.CheckBoxEnableTimer.CheckState = System.Windows.Forms.CheckState.Checked;
this.CheckBoxEnableTimer.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxEnableTimer.Location = new System.Drawing.Point(3, 28);
this.CheckBoxEnableTimer.Name = "CheckBoxEnableTimer";
this.CheckBoxEnableTimer.Size = new System.Drawing.Size(85, 18);
this.CheckBoxEnableTimer.TabIndex = 2;
this.CheckBoxEnableTimer.Text = "Abilita timer";
this.CheckBoxEnableTimer.UseVisualStyleBackColor = true;
this.CheckBoxEnableTimer.CheckedChanged += new System.EventHandler(this.CheckBoxEnableTimer_CheckedChanged);
//
// ButtonClose
//
this.ButtonClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.ButtonClose.Location = new System.Drawing.Point(247, 415);
this.ButtonClose.Name = "ButtonClose";
this.ButtonClose.Size = new System.Drawing.Size(75, 23);
this.ButtonClose.TabIndex = 59;
this.ButtonClose.Text = "Chiudi";
this.ButtonClose.UseVisualStyleBackColor = true;
this.ButtonClose.Click += new System.EventHandler(this.ButtonClose_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.TableLayoutPanel3);
this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupBox3.Location = new System.Drawing.Point(10, 190);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(312, 72);
this.groupBox3.TabIndex = 57;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Settaggi di timing";
//
// TableLayoutPanel3
//
this.TableLayoutPanel3.Anchor = System.Windows.Forms.AnchorStyles.None;
this.TableLayoutPanel3.ColumnCount = 2;
this.TableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 72.72727F));
this.TableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.27273F));
this.TableLayoutPanel3.Controls.Add(this.CheckBoxEnableTimer, 0, 1);
this.TableLayoutPanel3.Controls.Add(this.TimerPollingInterval, 1, 0);
this.TableLayoutPanel3.Controls.Add(this.LabelTimerPollingInterval, 0, 0);
this.TableLayoutPanel3.Location = new System.Drawing.Point(6, 16);
this.TableLayoutPanel3.Name = "TableLayoutPanel3";
this.TableLayoutPanel3.RowCount = 2;
this.TableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.TableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.TableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanel3.Size = new System.Drawing.Size(300, 50);
this.TableLayoutPanel3.TabIndex = 34;
//
// TimerPollingInterval
//
this.TimerPollingInterval.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.TimerPollingInterval.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.TimerPollingInterval.FormattingEnabled = true;
this.TimerPollingInterval.Items.AddRange(new object[] {
"0.5 sec",
"1 sec",
"2 sec",
"5 sec",
"10 sec"});
this.TimerPollingInterval.Location = new System.Drawing.Point(221, 3);
this.TimerPollingInterval.Name = "TimerPollingInterval";
this.TimerPollingInterval.Size = new System.Drawing.Size(76, 21);
this.TimerPollingInterval.TabIndex = 25;
this.TimerPollingInterval.Text = "1 sec";
this.TimerPollingInterval.SelectedIndexChanged += new System.EventHandler(this.TimerPollingInterval_SelectedIndexChanged);
//
// LabelTimerPollingInterval
//
this.LabelTimerPollingInterval.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.LabelTimerPollingInterval.AutoSize = true;
this.LabelTimerPollingInterval.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.LabelTimerPollingInterval.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.LabelTimerPollingInterval.Location = new System.Drawing.Point(3, 6);
this.LabelTimerPollingInterval.Name = "LabelTimerPollingInterval";
this.LabelTimerPollingInterval.Size = new System.Drawing.Size(94, 13);
this.LabelTimerPollingInterval.TabIndex = 23;
this.LabelTimerPollingInterval.Text = "Intervallo di polling";
this.LabelTimerPollingInterval.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.LabelTimerPollingInterval.MouseLeave += new System.EventHandler(this.LabelTimerPollingInterval_MouseLeave);
this.LabelTimerPollingInterval.MouseHover += new System.EventHandler(this.LabelTimerPollingInterval_MouseHover);
//
// GroupBoxStartupSettings
//
this.GroupBoxStartupSettings.Anchor = System.Windows.Forms.AnchorStyles.None;
this.GroupBoxStartupSettings.Controls.Add(this.TableLayoutPanel4);
this.GroupBoxStartupSettings.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.GroupBoxStartupSettings.Location = new System.Drawing.Point(10, 269);
this.GroupBoxStartupSettings.Name = "GroupBoxStartupSettings";
this.GroupBoxStartupSettings.Size = new System.Drawing.Size(312, 140);
this.GroupBoxStartupSettings.TabIndex = 71;
this.GroupBoxStartupSettings.TabStop = false;
this.GroupBoxStartupSettings.Text = "Avvio";
//
// TableLayoutPanel4
//
this.TableLayoutPanel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.TableLayoutPanel4.ColumnCount = 2;
this.TableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 72.73F));
this.TableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.27F));
this.TableLayoutPanel4.Controls.Add(this.OnTop, 0, 3);
this.TableLayoutPanel4.Controls.Add(this.CheckBoxStartMemoryCleanerOnSystemStartup, 0, 2);
this.TableLayoutPanel4.Controls.Add(this.CheckBoxStartTimerResolutionAutomatically, 0, 1);
this.TableLayoutPanel4.Controls.Add(this.CheckBoxStartMinimized, 0, 0);
this.TableLayoutPanel4.Location = new System.Drawing.Point(6, 16);
this.TableLayoutPanel4.Name = "TableLayoutPanel4";
this.TableLayoutPanel4.RowCount = 4;
this.TableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 34.93976F));
this.TableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 31.3253F));
this.TableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.TableLayoutPanel4.Size = new System.Drawing.Size(300, 100);
this.TableLayoutPanel4.TabIndex = 68;
//
// OnTop
//
this.OnTop.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.OnTop.AutoSize = true;
this.OnTop.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.OnTop.Location = new System.Drawing.Point(3, 78);
this.OnTop.Name = "OnTop";
this.OnTop.Size = new System.Drawing.Size(125, 18);
this.OnTop.TabIndex = 3;
this.OnTop.Text = "Fissa In primo piano";
this.OnTop.UseVisualStyleBackColor = true;
//
// CheckBoxStartMemoryCleanerOnSystemStartup
//
this.CheckBoxStartMemoryCleanerOnSystemStartup.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxStartMemoryCleanerOnSystemStartup.AutoSize = true;
this.CheckBoxStartMemoryCleanerOnSystemStartup.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxStartMemoryCleanerOnSystemStartup.Location = new System.Drawing.Point(3, 54);
this.CheckBoxStartMemoryCleanerOnSystemStartup.Name = "CheckBoxStartMemoryCleanerOnSystemStartup";
this.CheckBoxStartMemoryCleanerOnSystemStartup.Size = new System.Drawing.Size(190, 17);
this.CheckBoxStartMemoryCleanerOnSystemStartup.TabIndex = 2;
this.CheckBoxStartMemoryCleanerOnSystemStartup.Text = "Avvia RamLite al avvio di Winzoz";
this.CheckBoxStartMemoryCleanerOnSystemStartup.UseVisualStyleBackColor = true;
this.CheckBoxStartMemoryCleanerOnSystemStartup.CheckedChanged += new System.EventHandler(this.CheckBoxStartMemoryCleanerOnSystemStartup_CheckedChanged);
//
// CheckBoxStartTimerResolutionAutomatically
//
this.CheckBoxStartTimerResolutionAutomatically.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxStartTimerResolutionAutomatically.AutoSize = true;
this.CheckBoxStartTimerResolutionAutomatically.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxStartTimerResolutionAutomatically.Location = new System.Drawing.Point(3, 29);
this.CheckBoxStartTimerResolutionAutomatically.Name = "CheckBoxStartTimerResolutionAutomatically";
this.CheckBoxStartTimerResolutionAutomatically.Size = new System.Drawing.Size(176, 18);
this.CheckBoxStartTimerResolutionAutomatically.TabIndex = 0;
this.CheckBoxStartTimerResolutionAutomatically.Text = "Abilita automaticamnete il timer";
this.CheckBoxStartTimerResolutionAutomatically.UseVisualStyleBackColor = true;
this.CheckBoxStartTimerResolutionAutomatically.CheckedChanged += new System.EventHandler(this.CheckBoxStartTimerResolutionAutomatically_CheckedChanged);
//
// CheckBoxStartMinimized
//
this.CheckBoxStartMinimized.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.CheckBoxStartMinimized.AutoSize = true;
this.CheckBoxStartMinimized.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.CheckBoxStartMinimized.Location = new System.Drawing.Point(3, 3);
this.CheckBoxStartMinimized.Name = "CheckBoxStartMinimized";
this.CheckBoxStartMinimized.Size = new System.Drawing.Size(129, 18);
this.CheckBoxStartMinimized.TabIndex = 1;
this.CheckBoxStartMinimized.Text = "Avvia ridotto a icona";
this.CheckBoxStartMinimized.UseVisualStyleBackColor = true;
this.CheckBoxStartMinimized.CheckedChanged += new System.EventHandler(this.CheckBoxStartMinimized_CheckedChanged);
//
// tmrFlag
//
this.tmrFlag.Tick += new System.EventHandler(this.tmrFlag_Tick);
//
// SettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(334, 450);
this.Controls.Add(this.GroupBoxStartupSettings);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.ButtonClose);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.ButtonReset);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingsForm";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Opzioni";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SettingsForm_FormClosing);
this.groupBox1.ResumeLayout(false);
this.TableLayoutPanel1.ResumeLayout(false);
this.TableLayoutPanel1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.TableLayoutPanel2.ResumeLayout(false);
this.TableLayoutPanel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.DesiredTimerResolution)).EndInit();
this.groupBox3.ResumeLayout(false);
this.TableLayoutPanel3.ResumeLayout(false);
this.TableLayoutPanel3.PerformLayout();
this.GroupBoxStartupSettings.ResumeLayout(false);
this.TableLayoutPanel4.ResumeLayout(false);
this.TableLayoutPanel4.PerformLayout();
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.Button ButtonReset;
public System.Windows.Forms.GroupBox groupBox1;
public System.Windows.Forms.GroupBox groupBox2;
public System.Windows.Forms.Button ButtonClose;
public System.Windows.Forms.TableLayoutPanel TableLayoutPanel1;
public System.Windows.Forms.Label LabelHotkeyToCleanMemory;
public System.Windows.Forms.CheckBox CheckBoxEnableClearingOfTheStandbyList;
public System.Windows.Forms.CheckBox CheckBoxEnableEmptyingOfTheWorkingSet;
public System.Windows.Forms.TableLayoutPanel TableLayoutPanel2;
public System.Windows.Forms.CheckBox CheckBoxEnableTimer;
public System.Windows.Forms.NumericUpDown DesiredTimerResolution;
public System.Windows.Forms.Label LabelDesiredTimerResolution;
public System.Windows.Forms.GroupBox groupBox3;
public System.Windows.Forms.TableLayoutPanel TableLayoutPanel3;
public System.Windows.Forms.Label LabelTimerPollingInterval;
public System.Windows.Forms.ComboBox TimerPollingInterval;
public System.Windows.Forms.CheckBox CheckBoxEnableCustomTimerResolution;
public System.Windows.Forms.GroupBox GroupBoxStartupSettings;
public System.Windows.Forms.TableLayoutPanel TableLayoutPanel4;
public System.Windows.Forms.CheckBox CheckBoxStartMemoryCleanerOnSystemStartup;
public System.Windows.Forms.CheckBox CheckBoxStartTimerResolutionAutomatically;
public System.Windows.Forms.CheckBox CheckBoxStartMinimized;
public System.Windows.Forms.TextBox HotkeyToCleanMemory;
private System.Windows.Forms.Timer tmrFlag;
public System.Windows.Forms.CheckBox OnTop;
}
}