-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditStudentForm.Designer.cs
More file actions
110 lines (107 loc) · 3.65 KB
/
EditStudentForm.Designer.cs
File metadata and controls
110 lines (107 loc) · 3.65 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
namespace TinyCollegeGUI
{
partial class EditStudentForm
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label lblFirstName;
private System.Windows.Forms.TextBox txtFirstName;
private System.Windows.Forms.Label lblLastName;
private System.Windows.Forms.TextBox txtLastName;
private System.Windows.Forms.Label lblGPA;
private System.Windows.Forms.TextBox txtGPA;
private System.Windows.Forms.Button btnSave;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
lblFirstName = new Label();
txtFirstName = new TextBox();
lblLastName = new Label();
txtLastName = new TextBox();
lblGPA = new Label();
txtGPA = new TextBox();
btnSave = new Button();
SuspendLayout();
//
// lblFirstName
//
lblFirstName.AutoSize = true;
lblFirstName.Location = new Point(20, 50);
lblFirstName.Name = "lblFirstName";
lblFirstName.Size = new Size(89, 21);
lblFirstName.TabIndex = 0;
lblFirstName.Text = "First Name:";
//
// txtFirstName
//
txtFirstName.Location = new Point(110, 50);
txtFirstName.Name = "txtFirstName";
txtFirstName.Size = new Size(200, 29);
txtFirstName.TabIndex = 1;
//
// lblLastName
//
lblLastName.AutoSize = true;
lblLastName.Location = new Point(20, 100);
lblLastName.Name = "lblLastName";
lblLastName.Size = new Size(87, 21);
lblLastName.TabIndex = 2;
lblLastName.Text = "Last Name:";
//
// txtLastName
//
txtLastName.Location = new Point(110, 100);
txtLastName.Name = "txtLastName";
txtLastName.Size = new Size(200, 29);
txtLastName.TabIndex = 3;
//
// lblGPA
//
lblGPA.AutoSize = true;
lblGPA.Location = new Point(20, 150);
lblGPA.Name = "lblGPA";
lblGPA.Size = new Size(42, 21);
lblGPA.TabIndex = 4;
lblGPA.Text = "GPA:";
//
// txtGPA
//
txtGPA.Location = new Point(110, 150);
txtGPA.Name = "txtGPA";
txtGPA.Size = new Size(200, 29);
txtGPA.TabIndex = 5;
//
// btnSave
//
btnSave.Location = new Point(110, 200);
btnSave.Name = "btnSave";
btnSave.Size = new Size(100, 30);
btnSave.TabIndex = 6;
btnSave.Text = "Save";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// EditStudentForm
//
BackColor = SystemColors.ActiveCaption;
ClientSize = new Size(350, 250);
Controls.Add(lblFirstName);
Controls.Add(txtFirstName);
Controls.Add(lblLastName);
Controls.Add(txtLastName);
Controls.Add(lblGPA);
Controls.Add(txtGPA);
Controls.Add(btnSave);
Name = "EditStudentForm";
Text = "Edit Student Information";
ResumeLayout(false);
PerformLayout();
}
}
}