-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutBoxForm.Designer.cs
332 lines (326 loc) · 14.1 KB
/
AboutBoxForm.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
namespace DisksizeWatcher
{
partial class AboutBoxForm
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBoxForm));
tableLayoutPanel = new TableLayoutPanel();
logoPictureBox = new PictureBox();
labelProductName = new Label();
labelVersion = new Label();
labelCopyright = new Label();
labelCompanyName = new Label();
textBoxDescription = new TextBox();
okButton = new Button();
toolTip = new ToolTip(components);
statusStrip = new StatusStrip();
labelInformation = new ToolStripStatusLabel();
toolStripContainer = new ToolStripContainer();
tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)logoPictureBox).BeginInit();
statusStrip.SuspendLayout();
toolStripContainer.BottomToolStripPanel.SuspendLayout();
toolStripContainer.ContentPanel.SuspendLayout();
toolStripContainer.SuspendLayout();
SuspendLayout();
//
// tableLayoutPanel
//
tableLayoutPanel.AccessibleDescription = "Just a pane";
tableLayoutPanel.AccessibleName = "pane";
tableLayoutPanel.AccessibleRole = AccessibleRole.Pane;
tableLayoutPanel.ColumnCount = 2;
tableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 18.75F));
tableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 81.25F));
tableLayoutPanel.Controls.Add(logoPictureBox, 0, 0);
tableLayoutPanel.Controls.Add(labelProductName, 1, 0);
tableLayoutPanel.Controls.Add(labelVersion, 1, 1);
tableLayoutPanel.Controls.Add(labelCopyright, 1, 2);
tableLayoutPanel.Controls.Add(labelCompanyName, 1, 3);
tableLayoutPanel.Controls.Add(textBoxDescription, 1, 4);
tableLayoutPanel.Controls.Add(okButton, 1, 5);
tableLayoutPanel.Dock = DockStyle.Fill;
tableLayoutPanel.Location = new Point(0, 0);
tableLayoutPanel.Margin = new Padding(4, 3, 4, 3);
tableLayoutPanel.Name = "tableLayoutPanel";
tableLayoutPanel.RowCount = 6;
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 36.94268F));
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 24.84076F));
tableLayoutPanel.Size = new Size(295, 156);
tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
logoPictureBox.AccessibleDescription = "This is the program icon.";
logoPictureBox.AccessibleName = "program icon";
logoPictureBox.AccessibleRole = AccessibleRole.Graphic;
logoPictureBox.Dock = DockStyle.Fill;
logoPictureBox.Location = new Point(4, 3);
logoPictureBox.Margin = new Padding(4, 3, 4, 3);
logoPictureBox.Name = "logoPictureBox";
tableLayoutPanel.SetRowSpan(logoPictureBox, 6);
logoPictureBox.Size = new Size(47, 150);
logoPictureBox.TabIndex = 12;
logoPictureBox.TabStop = false;
toolTip.SetToolTip(logoPictureBox, "program icon");
logoPictureBox.MouseEnter += SetStatusbar_Enter;
logoPictureBox.MouseLeave += ClearStatusbar_Leave;
//
// labelProductName
//
labelProductName.AccessibleDescription = "Show the product name";
labelProductName.AccessibleName = "Product name";
labelProductName.AccessibleRole = AccessibleRole.StaticText;
labelProductName.AutoEllipsis = true;
labelProductName.Dock = DockStyle.Fill;
labelProductName.LiveSetting = System.Windows.Forms.Automation.AutomationLiveSetting.Polite;
labelProductName.Location = new Point(62, 0);
labelProductName.Margin = new Padding(7, 0, 4, 0);
labelProductName.MaximumSize = new Size(0, 20);
labelProductName.Name = "labelProductName";
labelProductName.Size = new Size(229, 15);
labelProductName.TabIndex = 0;
labelProductName.Text = "Product name";
labelProductName.TextAlign = ContentAlignment.MiddleLeft;
toolTip.SetToolTip(labelProductName, "Product name");
labelProductName.Enter += SetStatusbar_Enter;
labelProductName.Leave += ClearStatusbar_Leave;
labelProductName.MouseEnter += SetStatusbar_Enter;
labelProductName.MouseLeave += ClearStatusbar_Leave;
//
// labelVersion
//
labelVersion.AccessibleDescription = "Show the version";
labelVersion.AccessibleName = "Version";
labelVersion.AccessibleRole = AccessibleRole.StaticText;
labelVersion.AutoEllipsis = true;
labelVersion.Dock = DockStyle.Fill;
labelVersion.LiveSetting = System.Windows.Forms.Automation.AutomationLiveSetting.Polite;
labelVersion.Location = new Point(62, 15);
labelVersion.Margin = new Padding(7, 0, 4, 0);
labelVersion.MaximumSize = new Size(0, 20);
labelVersion.Name = "labelVersion";
labelVersion.Size = new Size(229, 15);
labelVersion.TabIndex = 1;
labelVersion.Text = "Version";
labelVersion.TextAlign = ContentAlignment.MiddleLeft;
toolTip.SetToolTip(labelVersion, "Version");
labelVersion.Enter += SetStatusbar_Enter;
labelVersion.Leave += ClearStatusbar_Leave;
labelVersion.MouseEnter += SetStatusbar_Enter;
labelVersion.MouseLeave += ClearStatusbar_Leave;
//
// labelCopyright
//
labelCopyright.AccessibleDescription = "Show the copyright";
labelCopyright.AccessibleName = "Copyright";
labelCopyright.AccessibleRole = AccessibleRole.StaticText;
labelCopyright.AutoEllipsis = true;
labelCopyright.Dock = DockStyle.Fill;
labelCopyright.LiveSetting = System.Windows.Forms.Automation.AutomationLiveSetting.Polite;
labelCopyright.Location = new Point(62, 30);
labelCopyright.Margin = new Padding(7, 0, 4, 0);
labelCopyright.MaximumSize = new Size(0, 20);
labelCopyright.Name = "labelCopyright";
labelCopyright.Size = new Size(229, 15);
labelCopyright.TabIndex = 2;
labelCopyright.Text = "Copyright";
labelCopyright.TextAlign = ContentAlignment.MiddleLeft;
toolTip.SetToolTip(labelCopyright, "Copyright");
labelCopyright.Enter += SetStatusbar_Enter;
labelCopyright.Leave += ClearStatusbar_Leave;
labelCopyright.MouseEnter += SetStatusbar_Enter;
labelCopyright.MouseLeave += ClearStatusbar_Leave;
//
// labelCompanyName
//
labelCompanyName.AccessibleDescription = "Show the company name";
labelCompanyName.AccessibleName = "Company name";
labelCompanyName.AccessibleRole = AccessibleRole.StaticText;
labelCompanyName.AutoEllipsis = true;
labelCompanyName.Dock = DockStyle.Fill;
labelCompanyName.LiveSetting = System.Windows.Forms.Automation.AutomationLiveSetting.Polite;
labelCompanyName.Location = new Point(62, 45);
labelCompanyName.Margin = new Padding(7, 0, 4, 0);
labelCompanyName.MaximumSize = new Size(0, 20);
labelCompanyName.Name = "labelCompanyName";
labelCompanyName.Size = new Size(229, 15);
labelCompanyName.TabIndex = 3;
labelCompanyName.Text = "Company name";
labelCompanyName.TextAlign = ContentAlignment.MiddleLeft;
toolTip.SetToolTip(labelCompanyName, "Copyright name");
labelCompanyName.Enter += SetStatusbar_Enter;
labelCompanyName.Leave += ClearStatusbar_Leave;
labelCompanyName.MouseEnter += SetStatusbar_Enter;
labelCompanyName.MouseLeave += ClearStatusbar_Leave;
//
// textBoxDescription
//
textBoxDescription.AccessibleDescription = "Show the description";
textBoxDescription.AccessibleName = "Description";
textBoxDescription.AccessibleRole = AccessibleRole.Text;
textBoxDescription.Dock = DockStyle.Fill;
textBoxDescription.Location = new Point(62, 63);
textBoxDescription.Margin = new Padding(7, 3, 4, 3);
textBoxDescription.Multiline = true;
textBoxDescription.Name = "textBoxDescription";
textBoxDescription.ReadOnly = true;
textBoxDescription.ScrollBars = ScrollBars.Both;
textBoxDescription.Size = new Size(229, 50);
textBoxDescription.TabIndex = 4;
textBoxDescription.TabStop = false;
textBoxDescription.Text = "Description";
toolTip.SetToolTip(textBoxDescription, "Description");
textBoxDescription.Enter += SetStatusbar_Enter;
textBoxDescription.Leave += ClearStatusbar_Leave;
textBoxDescription.MouseEnter += AboutBoxForm_Load;
textBoxDescription.MouseLeave += ClearStatusbar_Leave;
//
// okButton
//
okButton.AccessibleDescription = "Close the window";
okButton.AccessibleName = "OK button";
okButton.AccessibleRole = AccessibleRole.PushButton;
okButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
okButton.AutoEllipsis = true;
okButton.DialogResult = DialogResult.OK;
okButton.Image = ColorSelector.Properties.Resources.tick;
okButton.ImageAlign = ContentAlignment.MiddleRight;
okButton.Location = new Point(203, 126);
okButton.Margin = new Padding(4, 3, 4, 3);
okButton.Name = "okButton";
okButton.Size = new Size(88, 27);
okButton.TabIndex = 5;
okButton.Text = "&OK";
okButton.TextImageRelation = TextImageRelation.ImageBeforeText;
okButton.Enter += SetStatusbar_Enter;
okButton.Leave += ClearStatusbar_Leave;
okButton.MouseEnter += SetStatusbar_Enter;
okButton.MouseLeave += ClearStatusbar_Leave;
//
// statusStrip
//
statusStrip.AccessibleDescription = "Show the status bar";
statusStrip.AccessibleName = "status bar";
statusStrip.AccessibleRole = AccessibleRole.StatusBar;
statusStrip.AllowItemReorder = true;
statusStrip.Dock = DockStyle.None;
statusStrip.Items.AddRange(new ToolStripItem[] { labelInformation });
statusStrip.Location = new Point(0, 0);
statusStrip.Name = "statusStrip";
statusStrip.ShowItemToolTips = true;
statusStrip.Size = new Size(295, 22);
statusStrip.SizingGrip = false;
statusStrip.TabIndex = 0;
statusStrip.TabStop = true;
statusStrip.Text = "statusStrip";
toolTip.SetToolTip(statusStrip, "Show the status bar");
//
// labelInformation
//
labelInformation.AccessibleDescription = "Show some information";
labelInformation.AccessibleName = "some information";
labelInformation.AccessibleRole = AccessibleRole.StaticText;
labelInformation.AutoToolTip = true;
labelInformation.Name = "labelInformation";
labelInformation.Size = new Size(28, 17);
labelInformation.Text = "info";
//
// toolStripContainer
//
toolStripContainer.AccessibleDescription = "Just a tool bar";
toolStripContainer.AccessibleName = "tool bar";
toolStripContainer.AccessibleRole = AccessibleRole.ToolBar;
//
// toolStripContainer.BottomToolStripPanel
//
toolStripContainer.BottomToolStripPanel.Controls.Add(statusStrip);
//
// toolStripContainer.ContentPanel
//
toolStripContainer.ContentPanel.Controls.Add(tableLayoutPanel);
toolStripContainer.ContentPanel.Margin = new Padding(4, 3, 4, 3);
toolStripContainer.ContentPanel.Size = new Size(295, 156);
toolStripContainer.Dock = DockStyle.Fill;
toolStripContainer.Location = new Point(3, 3);
toolStripContainer.Margin = new Padding(4, 3, 4, 3);
toolStripContainer.Name = "toolStripContainer";
toolStripContainer.Size = new Size(295, 203);
toolStripContainer.TabIndex = 8;
toolStripContainer.Text = "toolStripContainer";
//
// AboutBoxForm
//
AcceptButton = okButton;
AccessibleDescription = "This is the program information window.";
AccessibleName = "Program information";
AccessibleRole = AccessibleRole.Dialog;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(301, 209);
Controls.Add(toolStripContainer);
FormBorderStyle = FormBorderStyle.FixedDialog;
Icon = (Icon)resources.GetObject("$this.Icon");
Margin = new Padding(4, 3, 4, 3);
MaximizeBox = false;
MinimizeBox = false;
Name = "AboutBoxForm";
Padding = new Padding(3);
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterParent;
Text = "Program information";
Load += AboutBoxForm_Load;
tableLayoutPanel.ResumeLayout(false);
tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)logoPictureBox).EndInit();
statusStrip.ResumeLayout(false);
statusStrip.PerformLayout();
toolStripContainer.BottomToolStripPanel.ResumeLayout(false);
toolStripContainer.BottomToolStripPanel.PerformLayout();
toolStripContainer.ContentPanel.ResumeLayout(false);
toolStripContainer.ResumeLayout(false);
toolStripContainer.PerformLayout();
ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
private System.Windows.Forms.PictureBox logoPictureBox;
private System.Windows.Forms.Label labelProductName;
private System.Windows.Forms.Label labelVersion;
private System.Windows.Forms.Label labelCopyright;
private System.Windows.Forms.Label labelCompanyName;
private System.Windows.Forms.TextBox textBoxDescription;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.ToolTip toolTip;
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel labelInformation;
private System.Windows.Forms.ToolStripContainer toolStripContainer;
}
}