-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsForm.Designer.cs
199 lines (193 loc) · 11.4 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
namespace DisksizeWatcher
{
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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
this.checkBoxMinimizeToSystemTray = new System.Windows.Forms.CheckBox();
this.buttonApply = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.labelInformation = new System.Windows.Forms.ToolStripStatusLabel();
this.checkBoxStayOnTop = new System.Windows.Forms.CheckBox();
this.statusStrip.SuspendLayout();
this.SuspendLayout();
//
// checkBoxMinimizeToSystemTray
//
this.checkBoxMinimizeToSystemTray.AccessibleDescription = "Click to minimize to system tray";
this.checkBoxMinimizeToSystemTray.AccessibleName = "minimize to system tray";
this.checkBoxMinimizeToSystemTray.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
this.checkBoxMinimizeToSystemTray.AutoSize = true;
this.checkBoxMinimizeToSystemTray.Location = new System.Drawing.Point(13, 36);
this.checkBoxMinimizeToSystemTray.Name = "checkBoxMinimizeToSystemTray";
this.checkBoxMinimizeToSystemTray.Size = new System.Drawing.Size(133, 17);
this.checkBoxMinimizeToSystemTray.TabIndex = 1;
this.checkBoxMinimizeToSystemTray.Text = "&Minimize to system tray";
this.toolTip.SetToolTip(this.checkBoxMinimizeToSystemTray, "Click to minimize to system tray");
this.checkBoxMinimizeToSystemTray.UseVisualStyleBackColor = true;
this.checkBoxMinimizeToSystemTray.Enter += new System.EventHandler(this.SetStatusbar_Enter);
this.checkBoxMinimizeToSystemTray.Leave += new System.EventHandler(this.ClearStatusbar_Leave);
this.checkBoxMinimizeToSystemTray.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter);
this.checkBoxMinimizeToSystemTray.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave);
//
// buttonApply
//
this.buttonApply.AccessibleDescription = "Apply the settings";
this.buttonApply.AccessibleName = "apply button";
this.buttonApply.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.buttonApply.AutoEllipsis = true;
this.buttonApply.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonApply.Image = global::DisksizeWatcher.Properties.Resources.fatcow_tick_octagon_16;
this.buttonApply.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.buttonApply.Location = new System.Drawing.Point(12, 59);
this.buttonApply.Name = "buttonApply";
this.buttonApply.Size = new System.Drawing.Size(75, 23);
this.buttonApply.TabIndex = 2;
this.buttonApply.Text = "&Apply";
this.buttonApply.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.toolTip.SetToolTip(this.buttonApply, "Apply the settings");
this.buttonApply.UseVisualStyleBackColor = true;
this.buttonApply.Enter += new System.EventHandler(this.SetStatusbar_Enter);
this.buttonApply.Leave += new System.EventHandler(this.ClearStatusbar_Leave);
this.buttonApply.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter);
this.buttonApply.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave);
//
// buttonCancel
//
this.buttonCancel.AccessibleDescription = "Cancel the settings";
this.buttonCancel.AccessibleName = "cancel button";
this.buttonCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.buttonCancel.AutoEllipsis = true;
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Image = global::DisksizeWatcher.Properties.Resources.fatcow_cancel_16;
this.buttonCancel.Location = new System.Drawing.Point(93, 59);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 3;
this.buttonCancel.Text = "&Cancel";
this.buttonCancel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.buttonCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.toolTip.SetToolTip(this.buttonCancel, "Cancel the settings");
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Enter += new System.EventHandler(this.SetStatusbar_Enter);
this.buttonCancel.Leave += new System.EventHandler(this.ClearStatusbar_Leave);
this.buttonCancel.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter);
this.buttonCancel.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave);
//
// statusStrip
//
this.statusStrip.AccessibleDescription = "Show the status bar";
this.statusStrip.AccessibleName = "status bar";
this.statusStrip.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar;
this.statusStrip.AllowItemReorder = true;
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.labelInformation});
this.statusStrip.Location = new System.Drawing.Point(0, 93);
this.statusStrip.Name = "statusStrip";
this.statusStrip.ShowItemToolTips = true;
this.statusStrip.Size = new System.Drawing.Size(181, 22);
this.statusStrip.SizingGrip = false;
this.statusStrip.TabIndex = 4;
this.statusStrip.TabStop = true;
this.statusStrip.Text = "statusStrip";
this.toolTip.SetToolTip(this.statusStrip, "Show the status bar");
this.statusStrip.Enter += new System.EventHandler(this.SetStatusbar_Enter);
this.statusStrip.Leave += new System.EventHandler(this.ClearStatusbar_Leave);
this.statusStrip.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter);
this.statusStrip.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave);
//
// labelInformation
//
this.labelInformation.AccessibleDescription = "Show some information";
this.labelInformation.AccessibleName = "some information";
this.labelInformation.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText;
this.labelInformation.AutoToolTip = true;
this.labelInformation.LiveSetting = System.Windows.Forms.Automation.AutomationLiveSetting.Polite;
this.labelInformation.Name = "labelInformation";
this.labelInformation.Size = new System.Drawing.Size(28, 17);
this.labelInformation.Text = "info";
this.labelInformation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter);
this.labelInformation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave);
//
// checkBoxStayOnTop
//
this.checkBoxStayOnTop.AccessibleDescription = "Click to stay on top";
this.checkBoxStayOnTop.AccessibleName = "stay on top";
this.checkBoxStayOnTop.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
this.checkBoxStayOnTop.AutoSize = true;
this.checkBoxStayOnTop.Location = new System.Drawing.Point(13, 12);
this.checkBoxStayOnTop.Name = "checkBoxStayOnTop";
this.checkBoxStayOnTop.Size = new System.Drawing.Size(80, 17);
this.checkBoxStayOnTop.TabIndex = 0;
this.checkBoxStayOnTop.Text = "Stay on &top";
this.toolTip.SetToolTip(this.checkBoxStayOnTop, "Click to stay on top");
this.checkBoxStayOnTop.UseVisualStyleBackColor = true;
this.checkBoxStayOnTop.Enter += new System.EventHandler(this.SetStatusbar_Enter);
this.checkBoxStayOnTop.Leave += new System.EventHandler(this.ClearStatusbar_Leave);
this.checkBoxStayOnTop.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter);
this.checkBoxStayOnTop.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave);
//
// SettingsForm
//
this.AcceptButton = this.buttonApply;
this.AccessibleDescription = "This is the setting window.";
this.AccessibleName = "Setting window";
this.AccessibleRole = System.Windows.Forms.AccessibleRole.Dialog;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(181, 115);
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonApply);
this.Controls.Add(this.checkBoxMinimizeToSystemTray);
this.Controls.Add(this.checkBoxStayOnTop);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingsForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Settings";
this.Load += new System.EventHandler(this.SettingsForm_Load);
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox checkBoxStayOnTop;
private System.Windows.Forms.CheckBox checkBoxMinimizeToSystemTray;
private System.Windows.Forms.Button buttonApply;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.ToolTip toolTip;
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel labelInformation;
}
}