Posts by 7..BK • 11 points
1 post
-
-1
votes1
answer76
viewsQ: Help to know what is wrong
//Função para permitir somente números e ponto private void ApenasValorNumerico(object sender, KeyEventArgs e) { TextBox txt = (TextBox)sender; if (e.Key != Key.Back) { if (Convert.ToChar(e.Key) ==…