private void TxtApellidoMaterno_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetras(e);
 }
 private void TxtRut_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloNumeros(e);
 }
 private void TxtNombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetras(e);
 }