-
Notifications
You must be signed in to change notification settings - Fork 0
/
Signin.Designer.cs
156 lines (149 loc) · 7.28 KB
/
Signin.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
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
namespace VBB
{
partial class Signin
{
/// <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()
{
this.components = new System.ComponentModel.Container();
this.lbltitle = new System.Windows.Forms.Label();
this.btnsignin = new System.Windows.Forms.Button();
this.btnsignup = new System.Windows.Forms.Button();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.lblusername = new System.Windows.Forms.Label();
this.lblpassword = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.SuspendLayout();
//
// lbltitle
//
this.lbltitle.Font = new System.Drawing.Font("Modern No. 20", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lbltitle.Location = new System.Drawing.Point(12, 9);
this.lbltitle.Name = "lbltitle";
this.lbltitle.Size = new System.Drawing.Size(817, 67);
this.lbltitle.TabIndex = 0;
this.lbltitle.Text = "Virtual Blood Bank";
this.lbltitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lbltitle.Click += new System.EventHandler(this.label1_Click);
//
// btnsignin
//
this.btnsignin.BackColor = System.Drawing.Color.CornflowerBlue;
this.btnsignin.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnsignin.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.btnsignin.Location = new System.Drawing.Point(278, 316);
this.btnsignin.Name = "btnsignin";
this.btnsignin.Size = new System.Drawing.Size(175, 55);
this.btnsignin.TabIndex = 1;
this.btnsignin.Text = "Sign in";
this.btnsignin.UseVisualStyleBackColor = false;
this.btnsignin.Click += new System.EventHandler(this.btnsignin_Click);
//
// btnsignup
//
this.btnsignup.BackColor = System.Drawing.Color.MediumAquamarine;
this.btnsignup.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnsignup.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.btnsignup.Location = new System.Drawing.Point(470, 316);
this.btnsignup.Name = "btnsignup";
this.btnsignup.Size = new System.Drawing.Size(175, 55);
this.btnsignup.TabIndex = 2;
this.btnsignup.Text = "Sign Up";
this.btnsignup.UseVisualStyleBackColor = false;
this.btnsignup.Click += new System.EventHandler(this.btnsignup_Click);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// lblusername
//
this.lblusername.AutoSize = true;
this.lblusername.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblusername.Location = new System.Drawing.Point(126, 189);
this.lblusername.Name = "lblusername";
this.lblusername.Size = new System.Drawing.Size(110, 24);
this.lblusername.TabIndex = 3;
this.lblusername.Text = "User Name:";
//
// lblpassword
//
this.lblpassword.AutoSize = true;
this.lblpassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblpassword.Location = new System.Drawing.Point(129, 236);
this.lblpassword.Name = "lblpassword";
this.lblpassword.Size = new System.Drawing.Size(97, 24);
this.lblpassword.TabIndex = 4;
this.lblpassword.Text = "Password:";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(278, 192);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(222, 20);
this.textBox1.TabIndex = 5;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(278, 236);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(222, 20);
this.textBox2.TabIndex = 6;
//
// Signin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(841, 542);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.lblpassword);
this.Controls.Add(this.lblusername);
this.Controls.Add(this.btnsignup);
this.Controls.Add(this.btnsignin);
this.Controls.Add(this.lbltitle);
this.Cursor = System.Windows.Forms.Cursors.Hand;
this.MaximizeBox = false;
this.Name = "Signin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Signin";
this.Load += new System.EventHandler(this.Home_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lbltitle;
private System.Windows.Forms.Button btnsignin;
private System.Windows.Forms.Button btnsignup;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.Label lblusername;
private System.Windows.Forms.Label lblpassword;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.ColorDialog colorDialog1;
}
}