Mercurial > servermonitor
annotate ServerMonitor/Forms/SettingsForm.Designer.cs @ 8:052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Sat, 09 Mar 2019 20:14:03 -0500 |
parents | c1dffaac66fa |
children | 75ca86e0862c |
rev | line source |
---|---|
4 | 1 namespace ServerMonitorApp |
2 { | |
3 partial class SettingsForm | |
4 { | |
5 /// <summary> | |
6 /// Required designer variable. | |
7 /// </summary> | |
8 private System.ComponentModel.IContainer components = null; | |
9 | |
10 /// <summary> | |
11 /// Clean up any resources being used. | |
12 /// </summary> | |
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 protected override void Dispose(bool disposing) | |
15 { | |
16 if (disposing && (components != null)) | |
17 { | |
18 components.Dispose(); | |
19 } | |
20 base.Dispose(disposing); | |
21 } | |
22 | |
23 #region Windows Form Designer generated code | |
24 | |
25 /// <summary> | |
26 /// Required method for Designer support - do not modify | |
27 /// the contents of this method with the code editor. | |
28 /// </summary> | |
29 private void InitializeComponent() | |
30 { | |
31 this.SeverityOptionsGroupBox = new System.Windows.Forms.GroupBox(); | |
32 this.ErrorComboBox = new System.Windows.Forms.ComboBox(); | |
33 this.WarningComboBox = new System.Windows.Forms.ComboBox(); | |
34 this.InformationComboBox = new System.Windows.Forms.ComboBox(); | |
35 this.InformationLabel = new System.Windows.Forms.Label(); | |
36 this.InformationIcon = new System.Windows.Forms.PictureBox(); | |
37 this.WarningLabel = new System.Windows.Forms.Label(); | |
38 this.WarningIcon = new System.Windows.Forms.PictureBox(); | |
39 this.ErrorLabel = new System.Windows.Forms.Label(); | |
40 this.ErrorIcon = new System.Windows.Forms.PictureBox(); | |
41 this.label1 = new System.Windows.Forms.Label(); | |
42 this.OkButton = new System.Windows.Forms.Button(); | |
43 this.CancelSettingsButton = new System.Windows.Forms.Button(); | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
44 this.KeepLogDaysInput = new System.Windows.Forms.NumericUpDown(); |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
45 this.DeleteLabel = new System.Windows.Forms.Label(); |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
46 this.DaysLabel = new System.Windows.Forms.Label(); |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
47 this.AutorunCheckBox = new System.Windows.Forms.CheckBox(); |
4 | 48 this.SeverityOptionsGroupBox.SuspendLayout(); |
49 ((System.ComponentModel.ISupportInitialize)(this.InformationIcon)).BeginInit(); | |
50 ((System.ComponentModel.ISupportInitialize)(this.WarningIcon)).BeginInit(); | |
51 ((System.ComponentModel.ISupportInitialize)(this.ErrorIcon)).BeginInit(); | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
52 ((System.ComponentModel.ISupportInitialize)(this.KeepLogDaysInput)).BeginInit(); |
4 | 53 this.SuspendLayout(); |
54 // | |
55 // SeverityOptionsGroupBox | |
56 // | |
57 this.SeverityOptionsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | |
58 | System.Windows.Forms.AnchorStyles.Right))); | |
59 this.SeverityOptionsGroupBox.Controls.Add(this.ErrorComboBox); | |
60 this.SeverityOptionsGroupBox.Controls.Add(this.WarningComboBox); | |
61 this.SeverityOptionsGroupBox.Controls.Add(this.InformationComboBox); | |
62 this.SeverityOptionsGroupBox.Controls.Add(this.InformationLabel); | |
63 this.SeverityOptionsGroupBox.Controls.Add(this.InformationIcon); | |
64 this.SeverityOptionsGroupBox.Controls.Add(this.WarningLabel); | |
65 this.SeverityOptionsGroupBox.Controls.Add(this.WarningIcon); | |
66 this.SeverityOptionsGroupBox.Controls.Add(this.ErrorLabel); | |
67 this.SeverityOptionsGroupBox.Controls.Add(this.ErrorIcon); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
68 this.SeverityOptionsGroupBox.Location = new System.Drawing.Point(12, 89); |
4 | 69 this.SeverityOptionsGroupBox.Name = "SeverityOptionsGroupBox"; |
70 this.SeverityOptionsGroupBox.Size = new System.Drawing.Size(337, 104); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
71 this.SeverityOptionsGroupBox.TabIndex = 8; |
4 | 72 this.SeverityOptionsGroupBox.TabStop = false; |
73 this.SeverityOptionsGroupBox.Text = "Severity settings"; | |
74 // | |
75 // ErrorComboBox | |
76 // | |
77 this.ErrorComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; | |
78 this.ErrorComboBox.FormattingEnabled = true; | |
79 this.ErrorComboBox.Location = new System.Drawing.Point(125, 17); | |
80 this.ErrorComboBox.Name = "ErrorComboBox"; | |
81 this.ErrorComboBox.Size = new System.Drawing.Size(121, 21); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
82 this.ErrorComboBox.TabIndex = 9; |
4 | 83 // |
84 // WarningComboBox | |
85 // | |
86 this.WarningComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; | |
87 this.WarningComboBox.FormattingEnabled = true; | |
88 this.WarningComboBox.Location = new System.Drawing.Point(125, 44); | |
89 this.WarningComboBox.Name = "WarningComboBox"; | |
90 this.WarningComboBox.Size = new System.Drawing.Size(121, 21); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
91 this.WarningComboBox.TabIndex = 11; |
4 | 92 // |
93 // InformationComboBox | |
94 // | |
95 this.InformationComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; | |
96 this.InformationComboBox.FormattingEnabled = true; | |
97 this.InformationComboBox.Location = new System.Drawing.Point(125, 71); | |
98 this.InformationComboBox.Name = "InformationComboBox"; | |
99 this.InformationComboBox.Size = new System.Drawing.Size(121, 21); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
100 this.InformationComboBox.TabIndex = 13; |
4 | 101 // |
102 // InformationLabel | |
103 // | |
104 this.InformationLabel.AutoSize = true; | |
105 this.InformationLabel.Location = new System.Drawing.Point(25, 74); | |
106 this.InformationLabel.Name = "InformationLabel"; | |
107 this.InformationLabel.Size = new System.Drawing.Size(94, 13); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
108 this.InformationLabel.TabIndex = 12; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
109 this.InformationLabel.Text = "&Information action:"; |
4 | 110 // |
111 // InformationIcon | |
112 // | |
113 this.InformationIcon.Image = global::ServerMonitorApp.Properties.Resources.info; | |
114 this.InformationIcon.Location = new System.Drawing.Point(6, 73); | |
115 this.InformationIcon.Name = "InformationIcon"; | |
116 this.InformationIcon.Size = new System.Drawing.Size(16, 16); | |
117 this.InformationIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; | |
118 this.InformationIcon.TabIndex = 4; | |
119 this.InformationIcon.TabStop = false; | |
120 // | |
121 // WarningLabel | |
122 // | |
123 this.WarningLabel.AutoSize = true; | |
124 this.WarningLabel.Location = new System.Drawing.Point(25, 47); | |
125 this.WarningLabel.Name = "WarningLabel"; | |
126 this.WarningLabel.Size = new System.Drawing.Size(82, 13); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
127 this.WarningLabel.TabIndex = 10; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
128 this.WarningLabel.Text = "&Warning action:"; |
4 | 129 // |
130 // WarningIcon | |
131 // | |
132 this.WarningIcon.Image = global::ServerMonitorApp.Properties.Resources.warning; | |
133 this.WarningIcon.Location = new System.Drawing.Point(6, 46); | |
134 this.WarningIcon.Name = "WarningIcon"; | |
135 this.WarningIcon.Size = new System.Drawing.Size(16, 16); | |
136 this.WarningIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; | |
137 this.WarningIcon.TabIndex = 2; | |
138 this.WarningIcon.TabStop = false; | |
139 // | |
140 // ErrorLabel | |
141 // | |
142 this.ErrorLabel.AutoSize = true; | |
143 this.ErrorLabel.Location = new System.Drawing.Point(25, 20); | |
144 this.ErrorLabel.Name = "ErrorLabel"; | |
145 this.ErrorLabel.Size = new System.Drawing.Size(64, 13); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
146 this.ErrorLabel.TabIndex = 8; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
147 this.ErrorLabel.Text = "&Error action:"; |
4 | 148 // |
149 // ErrorIcon | |
150 // | |
151 this.ErrorIcon.Image = global::ServerMonitorApp.Properties.Resources.error; | |
152 this.ErrorIcon.Location = new System.Drawing.Point(6, 19); | |
153 this.ErrorIcon.Name = "ErrorIcon"; | |
154 this.ErrorIcon.Size = new System.Drawing.Size(16, 16); | |
155 this.ErrorIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; | |
156 this.ErrorIcon.TabIndex = 0; | |
157 this.ErrorIcon.TabStop = false; | |
158 // | |
159 // label1 | |
160 // | |
161 this.label1.AutoSize = true; | |
162 this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
163 this.label1.Location = new System.Drawing.Point(9, 9); | |
164 this.label1.Name = "label1"; | |
165 this.label1.Size = new System.Drawing.Size(50, 13); | |
166 this.label1.TabIndex = 1; | |
167 this.label1.Text = "Options"; | |
168 // | |
169 // OkButton | |
170 // | |
171 this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
172 this.OkButton.Location = new System.Drawing.Point(193, 204); |
4 | 173 this.OkButton.Name = "OkButton"; |
174 this.OkButton.Size = new System.Drawing.Size(75, 23); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
175 this.OkButton.TabIndex = 50; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
176 this.OkButton.Text = "&OK"; |
4 | 177 this.OkButton.UseVisualStyleBackColor = true; |
178 this.OkButton.Click += new System.EventHandler(this.OkButton_Click); | |
179 // | |
180 // CancelSettingsButton | |
181 // | |
182 this.CancelSettingsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
183 this.CancelSettingsButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
184 this.CancelSettingsButton.Location = new System.Drawing.Point(274, 204); |
4 | 185 this.CancelSettingsButton.Name = "CancelSettingsButton"; |
186 this.CancelSettingsButton.Size = new System.Drawing.Size(75, 23); | |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
187 this.CancelSettingsButton.TabIndex = 51; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
188 this.CancelSettingsButton.Text = "&Cancel"; |
4 | 189 this.CancelSettingsButton.UseVisualStyleBackColor = true; |
190 this.CancelSettingsButton.Click += new System.EventHandler(this.CancelSettingsButton_Click); | |
191 // | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
192 // KeepLogDaysInput |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
193 // |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
194 this.KeepLogDaysInput.Location = new System.Drawing.Point(130, 59); |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
195 this.KeepLogDaysInput.Maximum = new decimal(new int[] { |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
196 9999, |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
197 0, |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
198 0, |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
199 0}); |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
200 this.KeepLogDaysInput.Name = "KeepLogDaysInput"; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
201 this.KeepLogDaysInput.Size = new System.Drawing.Size(50, 20); |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
202 this.KeepLogDaysInput.TabIndex = 6; |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
203 // |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
204 // DeleteLabel |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
205 // |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
206 this.DeleteLabel.AutoSize = true; |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
207 this.DeleteLabel.Location = new System.Drawing.Point(15, 61); |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
208 this.DeleteLabel.Name = "DeleteLabel"; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
209 this.DeleteLabel.Size = new System.Drawing.Size(113, 13); |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
210 this.DeleteLabel.TabIndex = 5; |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
211 this.DeleteLabel.Text = "&Delete log entries after"; |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
212 // |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
213 // DaysLabel |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
214 // |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
215 this.DaysLabel.AutoSize = true; |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
216 this.DaysLabel.Location = new System.Drawing.Point(182, 61); |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
217 this.DaysLabel.Name = "DaysLabel"; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
218 this.DaysLabel.Size = new System.Drawing.Size(29, 13); |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
219 this.DaysLabel.TabIndex = 7; |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
220 this.DaysLabel.Text = "days"; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
221 // |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
222 // AutorunCheckBox |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
223 // |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
224 this.AutorunCheckBox.AutoSize = true; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
225 this.AutorunCheckBox.Location = new System.Drawing.Point(18, 36); |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
226 this.AutorunCheckBox.Name = "AutorunCheckBox"; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
227 this.AutorunCheckBox.Size = new System.Drawing.Size(117, 17); |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
228 this.AutorunCheckBox.TabIndex = 3; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
229 this.AutorunCheckBox.Text = "&Start with Windows"; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
230 this.AutorunCheckBox.UseVisualStyleBackColor = true; |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
231 // |
4 | 232 // SettingsForm |
233 // | |
234 this.AcceptButton = this.OkButton; | |
235 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
236 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
237 this.CancelButton = this.CancelSettingsButton; |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
238 this.ClientSize = new System.Drawing.Size(361, 239); |
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
239 this.Controls.Add(this.AutorunCheckBox); |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
240 this.Controls.Add(this.DaysLabel); |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
241 this.Controls.Add(this.DeleteLabel); |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
242 this.Controls.Add(this.KeepLogDaysInput); |
4 | 243 this.Controls.Add(this.CancelSettingsButton); |
244 this.Controls.Add(this.OkButton); | |
245 this.Controls.Add(this.label1); | |
246 this.Controls.Add(this.SeverityOptionsGroupBox); | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
247 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
248 this.MaximizeBox = false; |
4 | 249 this.Name = "SettingsForm"; |
250 this.Text = "Options"; | |
251 this.Load += new System.EventHandler(this.SettingsForm_Load); | |
252 this.SeverityOptionsGroupBox.ResumeLayout(false); | |
253 this.SeverityOptionsGroupBox.PerformLayout(); | |
254 ((System.ComponentModel.ISupportInitialize)(this.InformationIcon)).EndInit(); | |
255 ((System.ComponentModel.ISupportInitialize)(this.WarningIcon)).EndInit(); | |
256 ((System.ComponentModel.ISupportInitialize)(this.ErrorIcon)).EndInit(); | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
257 ((System.ComponentModel.ISupportInitialize)(this.KeepLogDaysInput)).EndInit(); |
4 | 258 this.ResumeLayout(false); |
259 this.PerformLayout(); | |
260 | |
261 } | |
262 | |
263 #endregion | |
264 | |
265 private System.Windows.Forms.GroupBox SeverityOptionsGroupBox; | |
266 private System.Windows.Forms.PictureBox ErrorIcon; | |
267 private System.Windows.Forms.Label label1; | |
268 private System.Windows.Forms.Label InformationLabel; | |
269 private System.Windows.Forms.PictureBox InformationIcon; | |
270 private System.Windows.Forms.Label WarningLabel; | |
271 private System.Windows.Forms.PictureBox WarningIcon; | |
272 private System.Windows.Forms.Label ErrorLabel; | |
273 private System.Windows.Forms.ComboBox ErrorComboBox; | |
274 private System.Windows.Forms.ComboBox WarningComboBox; | |
275 private System.Windows.Forms.ComboBox InformationComboBox; | |
276 private System.Windows.Forms.Button OkButton; | |
277 private System.Windows.Forms.Button CancelSettingsButton; | |
6
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
278 private System.Windows.Forms.NumericUpDown KeepLogDaysInput; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
279 private System.Windows.Forms.Label DeleteLabel; |
c1dffaac66fa
- Don't show multiple password dialogs for the same key if the first one was cancelled.
Brad Greco <brad@bgreco.net>
parents:
4
diff
changeset
|
280 private System.Windows.Forms.Label DaysLabel; |
8
052aa62cb42a
Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents:
6
diff
changeset
|
281 private System.Windows.Forms.CheckBox AutorunCheckBox; |
4 | 282 } |
283 } |