-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAbout.Designer.cs
117 lines (112 loc) · 4.11 KB
/
About.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
namespace MediaFileManager
{
partial class About
{
/// <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()
{
lblVersion = new Label();
lblBuildDate = new Label();
lblAuthor = new Label();
lblDescription = new Label();
txtDescription = new TextBox();
SuspendLayout();
//
// lblVersion
//
lblVersion.AutoSize = true;
lblVersion.Location = new Point(19, 12);
lblVersion.Name = "lblVersion";
lblVersion.Size = new Size(45, 15);
lblVersion.TabIndex = 0;
lblVersion.Text = "Version";
//
// lblBuildDate
//
lblBuildDate.AutoSize = true;
lblBuildDate.Location = new Point(19, 37);
lblBuildDate.Name = "lblBuildDate";
lblBuildDate.Size = new Size(61, 15);
lblBuildDate.TabIndex = 1;
lblBuildDate.Text = "Build Date";
//
// lblAuthor
//
lblAuthor.AutoSize = true;
lblAuthor.Location = new Point(19, 61);
lblAuthor.Name = "lblAuthor";
lblAuthor.Size = new Size(44, 15);
lblAuthor.TabIndex = 2;
lblAuthor.Text = "Author";
//
// lblDescription
//
lblDescription.AutoSize = true;
lblDescription.Location = new Point(19, 85);
lblDescription.MaximumSize = new Size(100, 30);
lblDescription.Name = "lblDescription";
lblDescription.Size = new Size(70, 15);
lblDescription.TabIndex = 4;
lblDescription.Text = "Description:";
//
// txtDescription
//
txtDescription.AccessibleRole = AccessibleRole.None;
txtDescription.BackColor = SystemColors.Control;
txtDescription.BorderStyle = BorderStyle.None;
txtDescription.Enabled = false;
txtDescription.Location = new Point(95, 85);
txtDescription.Multiline = true;
txtDescription.Name = "txtDescription";
txtDescription.ReadOnly = true;
txtDescription.Size = new Size(308, 38);
txtDescription.TabIndex = 5;
txtDescription.Text = "Media File Manager helps you to organize photo, video and other media files by specified template";
//
// About
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(415, 139);
Controls.Add(txtDescription);
Controls.Add(lblDescription);
Controls.Add(lblAuthor);
Controls.Add(lblBuildDate);
Controls.Add(lblVersion);
FormBorderStyle = FormBorderStyle.FixedSingle;
MaximizeBox = false;
MinimizeBox = false;
Name = "About";
StartPosition = FormStartPosition.CenterParent;
Text = "About Media File Manager";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lblVersion;
private Label lblBuildDate;
private Label lblAuthor;
private Label lblDescription;
private TextBox txtDescription;
}
}