-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistrationForm.Designer.cs
89 lines (86 loc) · 2.91 KB
/
RegistrationForm.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
namespace BasicQuizApplicationWithUI
{
partial class RegistrationForm
{
private System.ComponentModel.IContainer components = null;
private TextBox textBoxName;
private TextBox textBoxEmail;
private Label labelName;
private Label labelEmail;
private Button buttonRegister;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
textBoxName = new TextBox();
textBoxEmail = new TextBox();
labelName = new Label();
labelEmail = new Label();
buttonRegister = new Button();
SuspendLayout();
//
// textBoxName
//
textBoxName.Location = new Point(120, 30);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(200, 23);
textBoxName.TabIndex = 0;
//
// textBoxEmail
//
textBoxEmail.Location = new Point(120, 70);
textBoxEmail.Name = "textBoxEmail";
textBoxEmail.Size = new Size(200, 23);
textBoxEmail.TabIndex = 1;
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(30, 30);
labelName.Name = "labelName";
labelName.Size = new Size(39, 15);
labelName.TabIndex = 2;
labelName.Text = "Name";
//
// labelEmail
//
labelEmail.AutoSize = true;
labelEmail.Location = new Point(30, 70);
labelEmail.Name = "labelEmail";
labelEmail.Size = new Size(36, 15);
labelEmail.TabIndex = 3;
labelEmail.Text = "Email";
//
// buttonRegister
//
buttonRegister.Location = new Point(120, 110);
buttonRegister.Name = "buttonRegister";
buttonRegister.Size = new Size(100, 30);
buttonRegister.TabIndex = 4;
buttonRegister.Text = "Register";
buttonRegister.UseVisualStyleBackColor = true;
buttonRegister.Click += buttonRegister_Click;
//
// RegistrationForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(400, 200);
Controls.Add(textBoxName);
Controls.Add(textBoxEmail);
Controls.Add(labelName);
Controls.Add(labelEmail);
Controls.Add(buttonRegister);
Name = "RegistrationForm";
Text = "User Registration";
ResumeLayout(false);
PerformLayout();
}
}
}