private void Button_Click(object sender, RoutedEventArgs e)
        {
            InicioCliente ic = new InicioCliente();

            this.Close();
            ic.Show();
        }
示例#2
0
        public InfoCliente()
        {
            InicioCliente inicioCliente = new InicioCliente();

            InitializeComponent();
            //inicioCliente.btnNombreClient.Content = this.btnNombreClient.Content;
        }
示例#3
0
 private void BtnIniciarSesion_Click(object sender, RoutedEventArgs e)
 {
     if (LogIngUsuario())
     {
         InicioCliente r = new InicioCliente();
         this.Close();
         r.btnNombreClient.Content = ObtenerUsuario();
         r.Show();
     }
 }