private void btnModificar_Click(object sender, RoutedEventArgs e)
        {
            bool bandera = verificar();

            if (!bandera)
            {
                String nombres   = txtNombres.Text;
                String apellidos = txtApellidos.Text;
                String direccion = txtDireccion.Text;
                String telefono  = txtTelefono.Text;
                String correo    = txtCorreo.Text;
                int    dpto      = Convert.ToInt32(cmbDepartamento.SelectedValue);
                int    mun       = Convert.ToInt32(cmbMunicipio.SelectedValue);
                String persEm    = txtNombreEmergencia.Text;
                String telEm     = txtTelEmergencia.Text;
                String Univ      = txtUniversidad.Text;

                _VoluntariosLN voluntario = new _VoluntariosLN(nombres, apellidos, telefono, direccion, correo, true, dpto, mun, persEm, telEm, Univ);
                Boolean        correcto   = voluntario.Ingresar_V();


                if (correcto)
                {
                    voluntario.Modificar_V(currentid);
                    this.Close();
                }
                else
                {
                    MessageBox.Show(voluntario._obtenerError());
                }
            }
        }
        private void btnDelet_Click(object sender, RoutedEventArgs e)
        {
            _Voluntarios   selec      = datagdVoluntarios.SelectedItem as _Voluntarios;
            _VoluntariosLN voluntario = new _VoluntariosLN();
            Boolean        correcto   = voluntario.Ingresar_V();

            idVol = selec.idVoluntarios;

            if (correcto)
            {
                if (MessageBox.Show("¿Desea eliminar a este voluntario?", "Confirmación", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
                {
                    voluntario.Eliminar_V(idVol);
                    fillDataGrid();
                }
                else
                {
                    fillDataGrid();
                }
            }
            else
            {
                MessageBox.Show(voluntario._obtenerError());
            }
        }
        private void btnEliminar_Click(object sender, RoutedEventArgs e)
        {
            _VoluntariosLN voluntario = new _VoluntariosLN();
            Boolean        correcto   = voluntario.Ingresar_V();


            if (correcto)
            {
                if (MessageBox.Show("¿Desea eliminar a este voluntario?", "Confirmación", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
                {
                    voluntario.Eliminar_V(currentid);
                    this.Close();
                    newUcVol.fillDataGrid();
                }
                else
                {
                    newUcVol.fillDataGrid();
                }
            }
            else
            {
                MessageBox.Show(voluntario._obtenerError());
            }
        }