private void btnActualizar_Click(object sender, RoutedEventArgs e)
        {
            ActualizarCliente actc = new ActualizarCliente();

            actc.Show();
            Close();
        }
        //revisar



        private void btnModificar_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                ActualizarCliente             ag = new ActualizarCliente();
                BibliotecaClase.ListaCompleta cl = (BibliotecaClase.ListaCompleta)dgrListarCli.SelectedItem;
                ag.txtRut.IsEnabled  = false;
                ag.txtCorreo.Text    = cl.correo;
                ag.txtDireccion.Text = cl.direccion;
                ag.txtNombre.Text    = cl.nom_contacto;
                ag.txtRazon.Text     = cl.razon_social;
                ag.txtTelefono.Text  = cl.telefono;
                ag.txtRut.Text       = cl.rut;
                foreach (BibliotecaClase.ComboBoxItem item in ag.cmbActividad.Items)
                {
                    if (item.Texto.ToString() == cl.desActEMP)
                    {
                        ag.cmbActividad.SelectedItem = item;
                    }
                }

                foreach (BibliotecaClase.ComboBoxItem item in ag.cmbTipo.Items)
                {
                    if (item.Texto.ToString() == cl.descTEMP)
                    {
                        ag.cmbTipo.SelectedItem = item;
                    }
                }

                ag.Show();

                this.Close();
            }
            catch (Exception)
            {
            }
        }