-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
190 lines (183 loc) · 9.68 KB
/
Form1.Designer.cs
File metadata and controls
190 lines (183 loc) · 9.68 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
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
namespace DentistAppointmentApp
{
partial class applicationMainForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(applicationMainForm));
this.registerButton = new System.Windows.Forms.Button();
this.loginButton = new System.Windows.Forms.Button();
this.loginPanel = new System.Windows.Forms.Panel();
this.dearCustomerLabel = new System.Windows.Forms.Label();
this.clinicTitleLabel = new System.Windows.Forms.Label();
this.passwordLabel = new System.Windows.Forms.Label();
this.loginNameLabel = new System.Windows.Forms.Label();
this.passwordTextBox = new System.Windows.Forms.TextBox();
this.lastNameTextBox = new System.Windows.Forms.TextBox();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.loginPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// registerButton
//
this.registerButton.BackColor = System.Drawing.Color.OrangeRed;
this.registerButton.FlatAppearance.BorderSize = 0;
this.registerButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.registerButton.ForeColor = System.Drawing.Color.White;
this.registerButton.Location = new System.Drawing.Point(184, 375);
this.registerButton.Name = "registerButton";
this.registerButton.Size = new System.Drawing.Size(120, 40);
this.registerButton.TabIndex = 4;
this.registerButton.Text = "Register";
this.registerButton.UseVisualStyleBackColor = false;
this.registerButton.Click += new System.EventHandler(this.button1_Click);
//
// loginButton
//
this.loginButton.BackColor = System.Drawing.Color.OrangeRed;
this.loginButton.ForeColor = System.Drawing.Color.White;
this.loginButton.Location = new System.Drawing.Point(46, 375);
this.loginButton.Name = "loginButton";
this.loginButton.Size = new System.Drawing.Size(120, 40);
this.loginButton.TabIndex = 3;
this.loginButton.Text = "Login";
this.loginButton.UseVisualStyleBackColor = false;
this.loginButton.Click += new System.EventHandler(this.loginButton_Click);
//
// loginPanel
//
this.loginPanel.BackColor = System.Drawing.Color.LightCyan;
this.loginPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.loginPanel.Controls.Add(this.dearCustomerLabel);
this.loginPanel.Controls.Add(this.clinicTitleLabel);
this.loginPanel.Controls.Add(this.passwordLabel);
this.loginPanel.Controls.Add(this.loginNameLabel);
this.loginPanel.Controls.Add(this.passwordTextBox);
this.loginPanel.Controls.Add(this.lastNameTextBox);
this.loginPanel.Controls.Add(this.logoPictureBox);
this.loginPanel.Controls.Add(this.loginButton);
this.loginPanel.Controls.Add(this.registerButton);
this.loginPanel.Location = new System.Drawing.Point(30, 31);
this.loginPanel.Name = "loginPanel";
this.loginPanel.Size = new System.Drawing.Size(818, 485);
this.loginPanel.TabIndex = 2;
this.loginPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
//
// dearCustomerLabel
//
this.dearCustomerLabel.AutoSize = true;
this.dearCustomerLabel.Location = new System.Drawing.Point(42, 151);
this.dearCustomerLabel.Name = "dearCustomerLabel";
this.dearCustomerLabel.Size = new System.Drawing.Size(471, 40);
this.dearCustomerLabel.TabIndex = 2;
this.dearCustomerLabel.Text = "Dear customer kindly Sign In to manage your booking or Register\r\n for a new book" +
"ing";
//
// clinicTitleLabel
//
this.clinicTitleLabel.AutoSize = true;
this.clinicTitleLabel.Font = new System.Drawing.Font("Vladimir Script", 25.8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.clinicTitleLabel.Location = new System.Drawing.Point(33, 69);
this.clinicTitleLabel.Name = "clinicTitleLabel";
this.clinicTitleLabel.Size = new System.Drawing.Size(379, 63);
this.clinicTitleLabel.TabIndex = 3;
this.clinicTitleLabel.Text = "AR Dental Clinic";
//
// passwordLabel
//
this.passwordLabel.AutoSize = true;
this.passwordLabel.Location = new System.Drawing.Point(42, 282);
this.passwordLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.passwordLabel.Name = "passwordLabel";
this.passwordLabel.Size = new System.Drawing.Size(78, 20);
this.passwordLabel.TabIndex = 8;
this.passwordLabel.Text = "Password";
//
// loginNameLabel
//
this.loginNameLabel.AutoSize = true;
this.loginNameLabel.Location = new System.Drawing.Point(42, 215);
this.loginNameLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.loginNameLabel.Name = "loginNameLabel";
this.loginNameLabel.Size = new System.Drawing.Size(87, 20);
this.loginNameLabel.TabIndex = 7;
this.loginNameLabel.Text = "Username ";
//
// passwordTextBox
//
this.passwordTextBox.Location = new System.Drawing.Point(44, 305);
this.passwordTextBox.Multiline = true;
this.passwordTextBox.Name = "passwordTextBox";
this.passwordTextBox.PasswordChar = '*';
this.passwordTextBox.Size = new System.Drawing.Size(260, 30);
this.passwordTextBox.TabIndex = 2;
//
// lastNameTextBox
//
this.lastNameTextBox.Location = new System.Drawing.Point(44, 238);
this.lastNameTextBox.Multiline = true;
this.lastNameTextBox.Name = "lastNameTextBox";
this.lastNameTextBox.Size = new System.Drawing.Size(260, 30);
this.lastNameTextBox.TabIndex = 1;
this.lastNameTextBox.TextChanged += new System.EventHandler(this.lastName_TB_TextChanged);
//
// logoPictureBox
//
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
this.logoPictureBox.Location = new System.Drawing.Point(387, 0);
this.logoPictureBox.Name = "logoPictureBox";
this.logoPictureBox.Size = new System.Drawing.Size(465, 480);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 4;
this.logoPictureBox.TabStop = false;
//
// applicationMainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightCyan;
this.ClientSize = new System.Drawing.Size(878, 544);
this.Controls.Add(this.loginPanel);
this.Name = "applicationMainForm";
this.Text = "Dentist Appointment Application (Sign in)";
this.Load += new System.EventHandler(this.Form1_Load);
this.loginPanel.ResumeLayout(false);
this.loginPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button registerButton;
private System.Windows.Forms.Button loginButton;
private System.Windows.Forms.Panel loginPanel;
private System.Windows.Forms.Label dearCustomerLabel;
private System.Windows.Forms.Label clinicTitleLabel;
private System.Windows.Forms.PictureBox logoPictureBox;
private System.Windows.Forms.TextBox passwordTextBox;
private System.Windows.Forms.TextBox lastNameTextBox;
private System.Windows.Forms.Label passwordLabel;
private System.Windows.Forms.Label loginNameLabel;
}
}