private void btnEliminar_Click(object sender, RoutedEventArgs e)
        {
            ListarCliente ec = new ListarCliente();

            ec.Show();
            Close();
        }
Exemplo n.º 2
0
        private async void btnListarCl_Click(object sender, RoutedEventArgs e)
        {
            ListarCliente lc = new ListarCliente();

            await this.ShowMessageAsync(null, "Bienvenido al modulo de Listar Cliente");

            lc.Show();
            Close();
        }
 private void button_Click_1(object sender, RoutedEventArgs e)
 {
     try
     {
         ListarCliente lc = new ListarCliente(this);
         lc.Show();
     }
     catch (Exception)
     {
     }
 }
        private void btnListar_Click(object sender, RoutedEventArgs e)
        {
            ListarCliente lc = new ListarCliente();

            lc.Show();
        }