-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddCourseForm.Designer.cs
More file actions
149 lines (145 loc) · 5.58 KB
/
AddCourseForm.Designer.cs
File metadata and controls
149 lines (145 loc) · 5.58 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
namespace TinyCollegeGUI
{
partial class AddCourseForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label lblCourseID;
private System.Windows.Forms.Label lblCourseName;
private System.Windows.Forms.Label lblCredits;
private System.Windows.Forms.TextBox txtCourseID;
private System.Windows.Forms.TextBox txtCourseName;
private System.Windows.Forms.TextBox txtCredits;
private System.Windows.Forms.Button btnAddCourse;
private System.Windows.Forms.Button btnClose;
/// <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()
{
lblCourseID = new Label();
lblCourseName = new Label();
lblCredits = new Label();
txtCourseID = new TextBox();
txtCourseName = new TextBox();
txtCredits = new TextBox();
btnAddCourse = new Button();
btnClose = new Button();
SuspendLayout();
//
// lblCourseID
//
lblCourseID.AutoSize = true;
lblCourseID.Location = new Point(18, 15);
lblCourseID.Margin = new Padding(4, 0, 4, 0);
lblCourseID.Name = "lblCourseID";
lblCourseID.Size = new Size(81, 21);
lblCourseID.TabIndex = 0;
lblCourseID.Text = "Course ID:";
//
// lblCourseName
//
lblCourseName.AutoSize = true;
lblCourseName.Location = new Point(18, 57);
lblCourseName.Margin = new Padding(4, 0, 4, 0);
lblCourseName.Name = "lblCourseName";
lblCourseName.Size = new Size(108, 21);
lblCourseName.TabIndex = 1;
lblCourseName.Text = "Course Name:";
//
// lblCredits
//
lblCredits.AutoSize = true;
lblCredits.Location = new Point(18, 99);
lblCredits.Margin = new Padding(4, 0, 4, 0);
lblCredits.Name = "lblCredits";
lblCredits.Size = new Size(62, 21);
lblCredits.TabIndex = 2;
lblCredits.Text = "Credits:";
//
// txtCourseID
//
txtCourseID.Location = new Point(138, 10);
txtCourseID.Margin = new Padding(4, 5, 4, 5);
txtCourseID.Name = "txtCourseID";
txtCourseID.Size = new Size(268, 29);
txtCourseID.TabIndex = 3;
//
// txtCourseName
//
txtCourseName.Location = new Point(138, 52);
txtCourseName.Margin = new Padding(4, 5, 4, 5);
txtCourseName.Name = "txtCourseName";
txtCourseName.Size = new Size(268, 29);
txtCourseName.TabIndex = 4;
//
// txtCredits
//
txtCredits.Location = new Point(138, 94);
txtCredits.Margin = new Padding(4, 5, 4, 5);
txtCredits.Name = "txtCredits";
txtCredits.Size = new Size(268, 29);
txtCredits.TabIndex = 5;
//
// btnAddCourse
//
btnAddCourse.Location = new Point(138, 136);
btnAddCourse.Margin = new Padding(4, 5, 4, 5);
btnAddCourse.Name = "btnAddCourse";
btnAddCourse.Size = new Size(112, 37);
btnAddCourse.TabIndex = 6;
btnAddCourse.Text = "Add Course";
btnAddCourse.UseVisualStyleBackColor = true;
btnAddCourse.Click += btnAddCourse_Click;
//
// btnClose
//
btnClose.Location = new Point(296, 136);
btnClose.Margin = new Padding(4, 5, 4, 5);
btnClose.Name = "btnClose";
btnClose.Size = new Size(112, 37);
btnClose.TabIndex = 7;
btnClose.Text = "Close";
btnClose.UseVisualStyleBackColor = true;
btnClose.Click += btnClose_Click;
//
// AddCourseForm
//
AutoScaleDimensions = new SizeF(9F, 21F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = SystemColors.ActiveCaption;
ClientSize = new Size(426, 192);
Controls.Add(btnClose);
Controls.Add(btnAddCourse);
Controls.Add(txtCredits);
Controls.Add(txtCourseName);
Controls.Add(txtCourseID);
Controls.Add(lblCredits);
Controls.Add(lblCourseName);
Controls.Add(lblCourseID);
Margin = new Padding(4, 5, 4, 5);
Name = "AddCourseForm";
Text = "Add Course";
Load += AddCourseForm_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
}
}