-
Notifications
You must be signed in to change notification settings - Fork 0
/
LogInForm.Designer.cs
117 lines (111 loc) · 4.96 KB
/
LogInForm.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
namespace Feszbuk {
partial class LogInForm {
/// <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.txtUserName = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.lblUserName = new System.Windows.Forms.Label();
this.lblPassword = new System.Windows.Forms.Label();
this.btnLogin = new System.Windows.Forms.Button();
this.lblLoginText = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(146, 80);
this.txtUserName.Name = "txtUserName";
this.txtUserName.Size = new System.Drawing.Size(100, 20);
this.txtUserName.TabIndex = 0;
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(146, 143);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(100, 20);
this.txtPassword.TabIndex = 1;
this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassword_KeyDown);
//
// lblUserName
//
this.lblUserName.AutoSize = true;
this.lblUserName.Location = new System.Drawing.Point(25, 83);
this.lblUserName.Name = "lblUserName";
this.lblUserName.Size = new System.Drawing.Size(87, 13);
this.lblUserName.TabIndex = 1;
this.lblUserName.Text = "Felhasználó név:";
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(25, 146);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(39, 13);
this.lblPassword.TabIndex = 1;
this.lblPassword.Text = "Jelszó:";
//
// btnLogin
//
this.btnLogin.ForeColor = System.Drawing.Color.White;
this.btnLogin.Location = new System.Drawing.Point(88, 211);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(95, 40);
this.btnLogin.TabIndex = 2;
this.btnLogin.Text = "Bejelentkezés";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.loginButton_Click);
//
// lblLoginText
//
this.lblLoginText.Location = new System.Drawing.Point(12, 9);
this.lblLoginText.Name = "lblLoginText";
this.lblLoginText.Size = new System.Drawing.Size(254, 52);
this.lblLoginText.TabIndex = 3;
this.lblLoginText.Text = "Kérem adja meg adatait a bejelentkezéshez!";
this.lblLoginText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// LogInForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(278, 282);
this.Controls.Add(this.lblLoginText);
this.Controls.Add(this.btnLogin);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.lblUserName);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.txtUserName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "LogInForm";
this.Text = "LogInForm";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtUserName;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label lblUserName;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.Label lblLoginText;
}
}