Como restringir a caixa de texto em C # para receber apenas números e (ponto “.” Ou vírgula “,”), depois de “.” Ou “,” permitir apenas 2 caracteres numéricos
Eu estou tentando desenvolver um código para restringir TextBox usando c # para permitir apenas entrada de números + vírgula (",") ou dot (".") + apenas 2 números após ponto ou vírgula Assim, desta forma, ver possíveis números que podem entrada:
3213,04 = OK
3211,664 = Not
32.31 = OK
32.3214 = Not
334,,00 = Not
3247,.00 = Not
214.,00 = Not
32.. = Not
8465,0 = Ok
654.0 = Ok
Entendeu meu objetivo? Eu desenvolvi código abaixo
private void txtValormetrocubico_KeyPress(object sender, KeyPressEventArgs e)
{
if (txtValormetrocubico.TextLength >= 0 && (e.KeyChar == (char)Keys.OemPeriod || e.KeyChar == (char)Keys.Oemcomma))
{
//tests
}
else
{
if (!char.IsControl(e.KeyChar)
&& !char.IsDigit(e.KeyChar)
&& e.KeyChar != '.' && e.KeyChar != ',')
{
e.Handled = true;
}
// only allow one decimal point
if (e.KeyChar == '.' && (sender as TextBox).Text.IndexOf('.') > -1)
{
e.Handled = true;
}
if (e.KeyChar == ',' && (sender as TextBox).Text.IndexOf(',') > -1)
{
e.Handled = true;
}
}
}