private void btnGestionarClientes_Click(object sender, RoutedEventArgs e)
        {
            GestionarClientes gc = new GestionarClientes(nomUsuario);

            gc.Show();
            this.Close();
        }
        private void btnVolver_Click(object sender, RoutedEventArgs e)
        {
            GestionarClientes gc = new GestionarClientes();

            gc.Show();
            this.Close();
        }
示例#3
0
        private void btnVolver_Click(object sender, RoutedEventArgs e)
        {
            GestionarClientes myec = new GestionarClientes(nomUsuario);

            myec.Show();
            this.Close();
        }