private void txtFraisInscription_PreviewTextInput(object sender, TextCompositionEventArgs e) { e.Handled = !Utilitaires.IsTextAllowed(e.Text); }
private void txtAnneeScolaire_PreviewTextInput(object sender, TextCompositionEventArgs e) { e.Handled = !Utilitaires.IsTextAllowed(e.Text); }
private void txtTelephone_PreviewTextInput(object sender, TextCompositionEventArgs e) { e.Handled = !Utilitaires.formatTelephone(e.Text); }