3 partial class AccountForm
8 private System.ComponentModel.IContainer components = null;
14 protected override void Dispose(
bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code 29 private void InitializeComponent()
31 System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(
AccountForm));
32 this.label1 =
new System.Windows.Forms.Label();
33 this.label2 =
new System.Windows.Forms.Label();
34 this.textBox_EmailAddress =
new System.Windows.Forms.TextBox();
35 this.groupBox1 =
new System.Windows.Forms.GroupBox();
36 this.textBox_Password =
new System.Windows.Forms.TextBox();
37 this.button_SignIn =
new System.Windows.Forms.Button();
38 this.button_SignUp =
new System.Windows.Forms.Button();
39 this.groupBox1.SuspendLayout();
44 this.label1.AutoSize =
true;
45 this.label1.Location =
new System.Drawing.Point(20, 16);
46 this.label1.Name =
"label1";
47 this.label1.Size =
new System.Drawing.Size(102, 13);
48 this.label1.TabIndex = 0;
49 this.label1.Text =
"Enter email address";
53 this.label2.AutoSize =
true;
54 this.label2.Location =
new System.Drawing.Point(20, 53);
55 this.label2.Name =
"label2";
56 this.label2.Size =
new System.Drawing.Size(98, 13);
57 this.label2.TabIndex = 1;
58 this.label2.Text =
"Enter the password";
62 this.textBox_EmailAddress.Location =
new System.Drawing.Point(176, 16);
63 this.textBox_EmailAddress.Name =
"textBox_EmailAddress";
64 this.textBox_EmailAddress.Size =
new System.Drawing.Size(162, 20);
65 this.textBox_EmailAddress.TabIndex = 2;
66 this.textBox_EmailAddress.Text =
"guest";
70 this.groupBox1.Controls.Add(this.textBox_Password);
71 this.groupBox1.Controls.Add(this.label1);
72 this.groupBox1.Controls.Add(this.textBox_EmailAddress);
73 this.groupBox1.Controls.Add(this.label2);
74 this.groupBox1.Location =
new System.Drawing.Point(12, 23);
75 this.groupBox1.Name =
"groupBox1";
76 this.groupBox1.Size =
new System.Drawing.Size(359, 86);
77 this.groupBox1.TabIndex = 3;
78 this.groupBox1.TabStop =
false;
82 this.textBox_Password.Location =
new System.Drawing.Point(176, 53);
83 this.textBox_Password.Name =
"textBox_Password";
84 this.textBox_Password.Size =
new System.Drawing.Size(162, 20);
85 this.textBox_Password.TabIndex = 3;
86 this.textBox_Password.UseSystemPasswordChar =
true;
87 this.textBox_Password.KeyDown +=
new System.Windows.Forms.KeyEventHandler(this.textBox_Password_KeyDown);
91 this.button_SignIn.Location =
new System.Drawing.Point(188, 127);
92 this.button_SignIn.Name =
"button_SignIn";
93 this.button_SignIn.Size =
new System.Drawing.Size(75, 23);
94 this.button_SignIn.TabIndex = 4;
95 this.button_SignIn.Text =
"Sign In";
96 this.button_SignIn.UseVisualStyleBackColor =
true;
97 this.button_SignIn.Click +=
new System.EventHandler(this.button_SignIn_Click);
101 this.button_SignUp.Location =
new System.Drawing.Point(296, 127);
102 this.button_SignUp.Name =
"button_SignUp";
103 this.button_SignUp.Size =
new System.Drawing.Size(75, 23);
104 this.button_SignUp.TabIndex = 5;
105 this.button_SignUp.Text =
"Register";
106 this.button_SignUp.UseVisualStyleBackColor =
true;
107 this.button_SignUp.Click +=
new System.EventHandler(this.button_SignUp_Click);
111 this.AutoScaleDimensions =
new System.Drawing.SizeF(6F, 13F);
112 this.AutoScaleMode =
System.Windows.Forms.AutoScaleMode.Font;
113 this.ClientSize =
new System.Drawing.Size(391, 162);
114 this.Controls.Add(this.button_SignUp);
115 this.Controls.Add(this.button_SignIn);
116 this.Controls.Add(this.groupBox1);
117 this.Icon = ((
System.Drawing.Icon)(resources.GetObject(
"$this.Icon")));
118 this.MaximizeBox =
false;
119 this.MinimizeBox =
false;
120 this.Name =
"AccountInfoForm";
121 this.Text =
"Account Information";
122 this.groupBox1.ResumeLayout(
false);
123 this.groupBox1.PerformLayout();
124 this.ResumeLayout(
false);
130 private System.Windows.Forms.Label label1;
131 private System.Windows.Forms.Label label2;
132 private System.Windows.Forms.TextBox textBox_EmailAddress;
133 private System.Windows.Forms.GroupBox groupBox1;
134 private System.Windows.Forms.TextBox textBox_Password;
135 private System.Windows.Forms.Button button_SignIn;
136 private System.Windows.Forms.Button button_SignUp;