This commit is contained in:
Michael Robles
2023-12-21 17:27:42 -07:00
parent e0b45e1b28
commit 3341e5107e
15 changed files with 134 additions and 37 deletions
+22 -21
View File
@@ -30,8 +30,8 @@
{
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.txtusuario = new System.Windows.Forms.TextBox();
this.txtcontraseña = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
@@ -65,24 +65,25 @@
this.pictureBox2.TabIndex = 1;
this.pictureBox2.TabStop = false;
//
// textBox1
// txtusuario
//
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBox1.Font = new System.Drawing.Font("Poppins SemiBold", 24F, System.Drawing.FontStyle.Bold);
this.textBox1.Location = new System.Drawing.Point(1241, 451);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(542, 60);
this.textBox1.TabIndex = 2;
this.txtusuario.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtusuario.Font = new System.Drawing.Font("Poppins SemiBold", 24F, System.Drawing.FontStyle.Bold);
this.txtusuario.Location = new System.Drawing.Point(1241, 451);
this.txtusuario.Name = "txtusuario";
this.txtusuario.Size = new System.Drawing.Size(542, 60);
this.txtusuario.TabIndex = 2;
this.txtusuario.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// textBox2
// txtcontraseña
//
this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBox2.Font = new System.Drawing.Font("Poppins SemiBold", 24F, System.Drawing.FontStyle.Bold);
this.textBox2.Location = new System.Drawing.Point(1239, 688);
this.textBox2.Name = "textBox2";
this.textBox2.PasswordChar = '*';
this.textBox2.Size = new System.Drawing.Size(542, 60);
this.textBox2.TabIndex = 3;
this.txtcontraseña.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtcontraseña.Font = new System.Drawing.Font("Poppins SemiBold", 24F, System.Drawing.FontStyle.Bold);
this.txtcontraseña.Location = new System.Drawing.Point(1239, 688);
this.txtcontraseña.Name = "txtcontraseña";
this.txtcontraseña.PasswordChar = '*';
this.txtcontraseña.Size = new System.Drawing.Size(542, 60);
this.txtcontraseña.TabIndex = 3;
//
// label1
//
@@ -171,8 +172,8 @@
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.txtcontraseña);
this.Controls.Add(this.txtusuario);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.pictureBox1);
this.DoubleBuffered = true;
@@ -195,8 +196,8 @@
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox txtusuario;
private System.Windows.Forms.TextBox txtcontraseña;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;