-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSettingsForm.Designer.cs
More file actions
172 lines (168 loc) · 6.53 KB
/
Copy pathSettingsForm.Designer.cs
File metadata and controls
172 lines (168 loc) · 6.53 KB
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
namespace RCRL
{
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));
RAMLabel = new Label();
useProxy = new CheckBox();
faststartBox = new CheckBox();
closeBtn = new PictureBox();
okBtn = new PictureBox();
ramBar = new TrackBar();
resetBtn = new PictureBox();
hcBtn = new CheckBox();
dontresizeBox = new CheckBox();
((System.ComponentModel.ISupportInitialize)closeBtn).BeginInit();
((System.ComponentModel.ISupportInitialize)okBtn).BeginInit();
((System.ComponentModel.ISupportInitialize)ramBar).BeginInit();
((System.ComponentModel.ISupportInitialize)resetBtn).BeginInit();
SuspendLayout();
//
// RAMLabel
//
resources.ApplyResources(RAMLabel, "RAMLabel");
RAMLabel.BackColor = Color.Transparent;
RAMLabel.ForeColor = Color.White;
RAMLabel.Name = "RAMLabel";
//
// useProxy
//
useProxy.BackColor = Color.Transparent;
resources.ApplyResources(useProxy, "useProxy");
useProxy.ForeColor = Color.White;
useProxy.Name = "useProxy";
useProxy.UseVisualStyleBackColor = false;
//
// faststartBox
//
faststartBox.BackColor = Color.Transparent;
resources.ApplyResources(faststartBox, "faststartBox");
faststartBox.ForeColor = Color.White;
faststartBox.Name = "faststartBox";
faststartBox.UseVisualStyleBackColor = false;
//
// closeBtn
//
closeBtn.BackColor = Color.Transparent;
closeBtn.BackgroundImage = Properties.Resources.Exit;
resources.ApplyResources(closeBtn, "closeBtn");
closeBtn.ForeColor = Color.Transparent;
closeBtn.Name = "closeBtn";
closeBtn.TabStop = false;
closeBtn.Click += closeBtn_Click;
closeBtn.MouseEnter += closeBtn_Hover;
closeBtn.MouseLeave += closeBtn_noHover;
//
// okBtn
//
okBtn.BackColor = Color.Transparent;
okBtn.BackgroundImage = Properties.Resources.Accept;
resources.ApplyResources(okBtn, "okBtn");
okBtn.Name = "okBtn";
okBtn.TabStop = false;
okBtn.MouseDown += okBtn_press;
okBtn.MouseEnter += okBtn_Hover;
okBtn.MouseLeave += okBtn_noHover;
okBtn.MouseUp += okBtn_release;
//
// ramBar
//
ramBar.BackColor = Color.Black;
ramBar.LargeChange = 2;
resources.ApplyResources(ramBar, "ramBar");
ramBar.Maximum = 30;
ramBar.Name = "ramBar";
ramBar.Value = 30;
ramBar.ValueChanged += ramBar_change;
//
// resetBtn
//
resetBtn.BackColor = Color.Transparent;
resetBtn.BackgroundImage = Properties.Resources.Reset;
resources.ApplyResources(resetBtn, "resetBtn");
resetBtn.Name = "resetBtn";
resetBtn.TabStop = false;
resetBtn.MouseDown += resetBtn_press;
resetBtn.MouseEnter += resetBtn_Hover;
resetBtn.MouseLeave += resetBtn_noHover;
resetBtn.MouseUp += resetBtn_release;
//
// hcBtn
//
hcBtn.BackColor = Color.Transparent;
resources.ApplyResources(hcBtn, "hcBtn");
hcBtn.ForeColor = Color.White;
hcBtn.Name = "hcBtn";
hcBtn.UseVisualStyleBackColor = false;
//
// dontresizeBox
//
dontresizeBox.BackColor = Color.Transparent;
resources.ApplyResources(dontresizeBox, "dontresizeBox");
dontresizeBox.ForeColor = Color.White;
dontresizeBox.Name = "dontresizeBox";
dontresizeBox.UseVisualStyleBackColor = false;
//
// SettingsForm
//
AutoScaleMode = AutoScaleMode.None;
BackgroundImage = Properties.Resources.Settings_background;
resources.ApplyResources(this, "$this");
ControlBox = false;
Controls.Add(dontresizeBox);
Controls.Add(okBtn);
Controls.Add(hcBtn);
Controls.Add(resetBtn);
Controls.Add(ramBar);
Controls.Add(closeBtn);
Controls.Add(faststartBox);
Controls.Add(RAMLabel);
Controls.Add(useProxy);
DoubleBuffered = true;
FormBorderStyle = FormBorderStyle.None;
MaximizeBox = false;
MinimizeBox = false;
Name = "SettingsForm";
Load += SettingsForm_Load;
((System.ComponentModel.ISupportInitialize)closeBtn).EndInit();
((System.ComponentModel.ISupportInitialize)okBtn).EndInit();
((System.ComponentModel.ISupportInitialize)ramBar).EndInit();
((System.ComponentModel.ISupportInitialize)resetBtn).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label RAMLabel;
private System.Windows.Forms.CheckBox useProxy;
private CheckBox faststartBox;
private PictureBox closeBtn;
private PictureBox okBtn;
private TrackBar ramBar;
private PictureBox resetBtn;
private CheckBox hcBtn;
private CheckBox dontresizeBox;
}
}