-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSettingsForm.Designer.cs
207 lines (201 loc) · 9.52 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
namespace OnTopper
{
partial class SettingsForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
this.checkBoxHideUninteractive = new System.Windows.Forms.CheckBox();
this.buttonApply = new System.Windows.Forms.Button();
this.checkBoxAutoUpdate = new System.Windows.Forms.CheckBox();
this.buttonAutorun = new System.Windows.Forms.Button();
this.groupBoxProcesses = new System.Windows.Forms.GroupBox();
this.checkBoxShowWindowTitles = new System.Windows.Forms.CheckBox();
this.labelInterval = new System.Windows.Forms.Label();
this.numericUpDownInterval = new System.Windows.Forms.NumericUpDown();
this.groupBoxStartup = new System.Windows.Forms.GroupBox();
this.checkBoxAutoHide = new System.Windows.Forms.CheckBox();
this.buttonCheckUpdates = new System.Windows.Forms.Button();
this.comboBoxLanguage = new System.Windows.Forms.ComboBox();
this.labelLanguage = new System.Windows.Forms.Label();
this.groupBoxProcesses.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDownInterval)).BeginInit();
this.groupBoxStartup.SuspendLayout();
this.SuspendLayout();
//
// checkBoxHideUninteractive
//
resources.ApplyResources(this.checkBoxHideUninteractive, "checkBoxHideUninteractive");
this.checkBoxHideUninteractive.Checked = true;
this.checkBoxHideUninteractive.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxHideUninteractive.Name = "checkBoxHideUninteractive";
this.checkBoxHideUninteractive.UseVisualStyleBackColor = true;
//
// buttonApply
//
resources.ApplyResources(this.buttonApply, "buttonApply");
this.buttonApply.Name = "buttonApply";
this.buttonApply.UseVisualStyleBackColor = true;
this.buttonApply.Click += new System.EventHandler(this.ButtonApply_Click);
//
// checkBoxAutoUpdate
//
resources.ApplyResources(this.checkBoxAutoUpdate, "checkBoxAutoUpdate");
this.checkBoxAutoUpdate.Name = "checkBoxAutoUpdate";
this.checkBoxAutoUpdate.UseVisualStyleBackColor = true;
this.checkBoxAutoUpdate.CheckedChanged += new System.EventHandler(this.CheckBoxAutoUpdate_CheckedChanged);
//
// buttonAutorun
//
resources.ApplyResources(this.buttonAutorun, "buttonAutorun");
this.buttonAutorun.Name = "buttonAutorun";
this.buttonAutorun.UseVisualStyleBackColor = true;
this.buttonAutorun.Click += new System.EventHandler(this.ButtonAutorunOff_Click);
//
// groupBoxProcesses
//
this.groupBoxProcesses.Controls.Add(this.checkBoxShowWindowTitles);
this.groupBoxProcesses.Controls.Add(this.labelInterval);
this.groupBoxProcesses.Controls.Add(this.numericUpDownInterval);
this.groupBoxProcesses.Controls.Add(this.checkBoxAutoUpdate);
this.groupBoxProcesses.Controls.Add(this.checkBoxHideUninteractive);
resources.ApplyResources(this.groupBoxProcesses, "groupBoxProcesses");
this.groupBoxProcesses.Name = "groupBoxProcesses";
this.groupBoxProcesses.TabStop = false;
//
// checkBoxShowWindowTitles
//
resources.ApplyResources(this.checkBoxShowWindowTitles, "checkBoxShowWindowTitles");
this.checkBoxShowWindowTitles.Name = "checkBoxShowWindowTitles";
this.checkBoxShowWindowTitles.UseVisualStyleBackColor = true;
//
// labelInterval
//
resources.ApplyResources(this.labelInterval, "labelInterval");
this.labelInterval.Name = "labelInterval";
//
// numericUpDownInterval
//
this.numericUpDownInterval.Increment = new decimal(new int[] {
100,
0,
0,
0});
resources.ApplyResources(this.numericUpDownInterval, "numericUpDownInterval");
this.numericUpDownInterval.Maximum = new decimal(new int[] {
60000,
0,
0,
0});
this.numericUpDownInterval.Minimum = new decimal(new int[] {
1000,
0,
0,
0});
this.numericUpDownInterval.Name = "numericUpDownInterval";
this.numericUpDownInterval.Value = new decimal(new int[] {
3000,
0,
0,
0});
//
// groupBoxStartup
//
this.groupBoxStartup.Controls.Add(this.checkBoxAutoHide);
this.groupBoxStartup.Controls.Add(this.buttonAutorun);
resources.ApplyResources(this.groupBoxStartup, "groupBoxStartup");
this.groupBoxStartup.Name = "groupBoxStartup";
this.groupBoxStartup.TabStop = false;
//
// checkBoxAutoHide
//
resources.ApplyResources(this.checkBoxAutoHide, "checkBoxAutoHide");
this.checkBoxAutoHide.Name = "checkBoxAutoHide";
this.checkBoxAutoHide.UseVisualStyleBackColor = true;
//
// buttonCheckUpdates
//
resources.ApplyResources(this.buttonCheckUpdates, "buttonCheckUpdates");
this.buttonCheckUpdates.Name = "buttonCheckUpdates";
this.buttonCheckUpdates.UseVisualStyleBackColor = true;
this.buttonCheckUpdates.Click += new System.EventHandler(this.ButtonCheckUpdates_Click);
//
// comboBoxLanguage
//
this.comboBoxLanguage.FormattingEnabled = true;
this.comboBoxLanguage.Items.AddRange(new object[] {
resources.GetString("comboBoxLanguage.Items"),
resources.GetString("comboBoxLanguage.Items1"),
resources.GetString("comboBoxLanguage.Items2")});
resources.ApplyResources(this.comboBoxLanguage, "comboBoxLanguage");
this.comboBoxLanguage.Name = "comboBoxLanguage";
//
// labelLanguage
//
resources.ApplyResources(this.labelLanguage, "labelLanguage");
this.labelLanguage.Name = "labelLanguage";
//
// SettingsForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ControlBox = false;
this.Controls.Add(this.labelLanguage);
this.Controls.Add(this.comboBoxLanguage);
this.Controls.Add(this.buttonCheckUpdates);
this.Controls.Add(this.groupBoxProcesses);
this.Controls.Add(this.buttonApply);
this.Controls.Add(this.groupBoxStartup);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingsForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SettingsForm_FormClosing);
this.groupBoxProcesses.ResumeLayout(false);
this.groupBoxProcesses.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDownInterval)).EndInit();
this.groupBoxStartup.ResumeLayout(false);
this.groupBoxStartup.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox checkBoxHideUninteractive;
private System.Windows.Forms.Button buttonApply;
private System.Windows.Forms.CheckBox checkBoxAutoUpdate;
private System.Windows.Forms.Button buttonAutorun;
private System.Windows.Forms.GroupBox groupBoxProcesses;
private System.Windows.Forms.Label labelInterval;
private System.Windows.Forms.NumericUpDown numericUpDownInterval;
private System.Windows.Forms.GroupBox groupBoxStartup;
private System.Windows.Forms.CheckBox checkBoxAutoHide;
private System.Windows.Forms.CheckBox checkBoxShowWindowTitles;
private System.Windows.Forms.Button buttonCheckUpdates;
private System.Windows.Forms.ComboBox comboBoxLanguage;
private System.Windows.Forms.Label labelLanguage;
}
}