Metziop

Untitled

Jul 27th, 2022
1,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using Ubar4.Datos;
  11.  
  12. namespace Ubar4
  13. {
  14.     public partial class Log : Form
  15.     {
  16.         public Log()
  17.         {
  18.             InitializeComponent();
  19.         }
  20.  
  21.         private void btnLog_Click(object sender, EventArgs e)
  22.         {
  23.             string nombreUser=userTxt.Text.Trim();
  24.             datosUsuario.ComprobarUsuario(nombreUser);
  25.         }
  26.  
  27.         private void registroLbl_Click(object sender, EventArgs e)
  28.         {
  29.             Registro reg = new Registro();
  30.             reg.ShowDialog();
  31.            
  32.            
  33.            
  34.         }
  35.        
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment