Skip to content

Instantly share code, notes, and snippets.

@jofese
Last active July 6, 2017 14:54
Show Gist options
  • Select an option

  • Save jofese/6b90cead0515c53aabd5a6b44f7b93b1 to your computer and use it in GitHub Desktop.

Select an option

Save jofese/6b90cead0515c53aabd5a6b44f7b93b1 to your computer and use it in GitHub Desktop.
Validar Textfield numeros decimales C#
private void txtNumero_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar != (char)44 && e.KeyChar != (char)46 && !Char.IsDigit(e.KeyChar) && e.KeyChar != (char)8 && e.KeyChar != (char)47)
{
e.Handled = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment