private void txtLegajoAlumno_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
 private void txtDniDocente_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
 private void txtNumeroResponsable_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }