180 lines
7.2 KiB
C#
180 lines
7.2 KiB
C#
using EFCDesk.Classes;
|
|
|
|
namespace EFCDesk
|
|
{
|
|
partial class Login
|
|
{
|
|
/// <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(Login));
|
|
pictureBox1 = new PictureBox();
|
|
label2 = new Label();
|
|
textBoxContrasenia = new TextBoxConPaste();
|
|
buttonInicioSesion = new Button();
|
|
label3 = new Label();
|
|
buttonOpciones = new Button();
|
|
label1 = new Label();
|
|
txtUsuario = new TextBox();
|
|
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// pictureBox1
|
|
//
|
|
pictureBox1.Image = (Image)resources.GetObject("pictureBox1.Image");
|
|
pictureBox1.Location = new Point(12, 15);
|
|
pictureBox1.Margin = new Padding(4);
|
|
pictureBox1.Name = "pictureBox1";
|
|
pictureBox1.Size = new Size(102, 118);
|
|
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
|
|
pictureBox1.TabIndex = 0;
|
|
pictureBox1.TabStop = false;
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Font = new Font("Century Gothic", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
label2.Location = new Point(126, 77);
|
|
label2.Margin = new Padding(4, 0, 4, 0);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(107, 21);
|
|
label2.TabIndex = 3;
|
|
label2.Text = "Contraseña:";
|
|
//
|
|
// textBoxContrasenia
|
|
//
|
|
textBoxContrasenia.Location = new Point(126, 104);
|
|
textBoxContrasenia.Margin = new Padding(4);
|
|
textBoxContrasenia.Name = "textBoxContrasenia";
|
|
textBoxContrasenia.Size = new Size(247, 27);
|
|
textBoxContrasenia.TabIndex = 4;
|
|
textBoxContrasenia.TextAlign = HorizontalAlignment.Center;
|
|
textBoxContrasenia.UseSystemPasswordChar = true;
|
|
textBoxContrasenia.TextChanged += textBoxContrasenia_TextChanged;
|
|
textBoxContrasenia.KeyDown += textBoxContrasenia_KeyDown;
|
|
//
|
|
// buttonInicioSesion
|
|
//
|
|
buttonInicioSesion.BackgroundImage = (Image)resources.GetObject("buttonInicioSesion.BackgroundImage");
|
|
buttonInicioSesion.Cursor = Cursors.Hand;
|
|
buttonInicioSesion.FlatStyle = FlatStyle.Flat;
|
|
buttonInicioSesion.ForeColor = Color.White;
|
|
buttonInicioSesion.Location = new Point(15, 150);
|
|
buttonInicioSesion.Margin = new Padding(4);
|
|
buttonInicioSesion.Name = "buttonInicioSesion";
|
|
buttonInicioSesion.Size = new Size(357, 38);
|
|
buttonInicioSesion.TabIndex = 5;
|
|
buttonInicioSesion.Text = "Iniciar Sesión";
|
|
buttonInicioSesion.UseVisualStyleBackColor = true;
|
|
buttonInicioSesion.Click += buttonInicioSesion_Click;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Font = new Font("Century Gothic", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
label3.ForeColor = SystemColors.AppWorkspace;
|
|
label3.Location = new Point(12, 201);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(77, 17);
|
|
label3.TabIndex = 6;
|
|
label3.Text = "Aduanasoft";
|
|
//
|
|
// buttonOpciones
|
|
//
|
|
buttonOpciones.Cursor = Cursors.Hand;
|
|
buttonOpciones.FlatAppearance.BorderSize = 0;
|
|
buttonOpciones.FlatStyle = FlatStyle.Flat;
|
|
buttonOpciones.Font = new Font("Century Gothic", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
buttonOpciones.ForeColor = Color.DodgerBlue;
|
|
buttonOpciones.Location = new Point(280, 191);
|
|
buttonOpciones.Margin = new Padding(3, 4, 3, 4);
|
|
buttonOpciones.Name = "buttonOpciones";
|
|
buttonOpciones.Size = new Size(90, 29);
|
|
buttonOpciones.TabIndex = 7;
|
|
buttonOpciones.Text = "Opciones";
|
|
buttonOpciones.UseVisualStyleBackColor = true;
|
|
buttonOpciones.Click += buttonOpciones_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Font = new Font("Century Gothic", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
label1.Location = new Point(126, 15);
|
|
label1.Margin = new Padding(4, 0, 4, 0);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(70, 21);
|
|
label1.TabIndex = 8;
|
|
label1.Text = "Usuario:";
|
|
//
|
|
// txtUsuario
|
|
//
|
|
txtUsuario.Location = new Point(126, 39);
|
|
txtUsuario.Name = "txtUsuario";
|
|
txtUsuario.Size = new Size(247, 27);
|
|
txtUsuario.TabIndex = 9;
|
|
txtUsuario.TextAlign = HorizontalAlignment.Center;
|
|
//
|
|
// Login
|
|
//
|
|
AutoScaleDimensions = new SizeF(9F, 19F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.White;
|
|
ClientSize = new Size(379, 226);
|
|
Controls.Add(txtUsuario);
|
|
Controls.Add(label1);
|
|
Controls.Add(buttonOpciones);
|
|
Controls.Add(label3);
|
|
Controls.Add(buttonInicioSesion);
|
|
Controls.Add(textBoxContrasenia);
|
|
Controls.Add(label2);
|
|
Controls.Add(pictureBox1);
|
|
Font = new Font("Century Gothic", 12F, FontStyle.Bold, GraphicsUnit.Point, 0);
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
Icon = (Icon)resources.GetObject("$this.Icon");
|
|
Margin = new Padding(4);
|
|
MaximizeBox = false;
|
|
Name = "Login";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Expediente Electrónico";
|
|
Shown += Login_Shown;
|
|
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBox1;
|
|
private Label label2;
|
|
private TextBoxConPaste textBoxContrasenia;
|
|
private Button buttonInicioSesion;
|
|
private Label label3;
|
|
private Button buttonOpciones;
|
|
private Label label1;
|
|
private TextBox txtUsuario;
|
|
}
|
|
}
|