113 lines
5.0 KiB
C#
113 lines
5.0 KiB
C#
namespace FabitArchiwum.App
|
|
{
|
|
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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
|
|
this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
|
|
this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
|
|
this.tbUser = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
|
|
this.tbPassword = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
|
|
this.btLogin = new ComponentFactory.Krypton.Toolkit.KryptonButton();
|
|
this.SuspendLayout();
|
|
//
|
|
// kryptonLabel1
|
|
//
|
|
this.kryptonLabel1.Location = new System.Drawing.Point(12, 23);
|
|
this.kryptonLabel1.Name = "kryptonLabel1";
|
|
this.kryptonLabel1.Size = new System.Drawing.Size(93, 24);
|
|
this.kryptonLabel1.TabIndex = 5;
|
|
this.kryptonLabel1.Values.Text = "Użytkownik:";
|
|
//
|
|
// kryptonLabel2
|
|
//
|
|
this.kryptonLabel2.Location = new System.Drawing.Point(51, 51);
|
|
this.kryptonLabel2.Name = "kryptonLabel2";
|
|
this.kryptonLabel2.Size = new System.Drawing.Size(54, 24);
|
|
this.kryptonLabel2.TabIndex = 6;
|
|
this.kryptonLabel2.Values.Text = "Hasło:";
|
|
//
|
|
// tbUser
|
|
//
|
|
this.tbUser.Location = new System.Drawing.Point(111, 20);
|
|
this.tbUser.Name = "tbUser";
|
|
this.tbUser.Size = new System.Drawing.Size(211, 27);
|
|
this.tbUser.TabIndex = 7;
|
|
this.tbUser.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbUser_KeyDown_1);
|
|
//
|
|
// tbPassword
|
|
//
|
|
this.tbPassword.Location = new System.Drawing.Point(111, 53);
|
|
this.tbPassword.Name = "tbPassword";
|
|
this.tbPassword.PasswordChar = '*';
|
|
this.tbPassword.Size = new System.Drawing.Size(211, 27);
|
|
this.tbPassword.TabIndex = 8;
|
|
this.tbPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbPassword_KeyDown);
|
|
//
|
|
// btLogin
|
|
//
|
|
this.btLogin.Location = new System.Drawing.Point(111, 87);
|
|
this.btLogin.Name = "btLogin";
|
|
this.btLogin.Size = new System.Drawing.Size(120, 36);
|
|
this.btLogin.TabIndex = 9;
|
|
this.btLogin.Values.Text = "Zaloguj";
|
|
this.btLogin.Click += new System.EventHandler(this.btLogin_Click);
|
|
//
|
|
// LoginForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(334, 135);
|
|
this.Controls.Add(this.btLogin);
|
|
this.Controls.Add(this.tbPassword);
|
|
this.Controls.Add(this.tbUser);
|
|
this.Controls.Add(this.kryptonLabel2);
|
|
this.Controls.Add(this.kryptonLabel1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "LoginForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "LOGOWANIE";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LoginForm_FormClosing);
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LoginForm_FormClosed);
|
|
this.Shown += new System.EventHandler(this.LoginForm_Shown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private ComponentFactory.Krypton.Toolkit.KryptonLabel kryptonLabel1;
|
|
private ComponentFactory.Krypton.Toolkit.KryptonLabel kryptonLabel2;
|
|
private ComponentFactory.Krypton.Toolkit.KryptonTextBox tbUser;
|
|
private ComponentFactory.Krypton.Toolkit.KryptonTextBox tbPassword;
|
|
private ComponentFactory.Krypton.Toolkit.KryptonButton btLogin;
|
|
}
|
|
} |