Skip to content

Instantly share code, notes, and snippets.

@MartinZikmund
Created January 22, 2019 22:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinZikmund/b525954405a5d842a555040fa6c9d0c7 to your computer and use it in GitHub Desktop.
Save MartinZikmund/b525954405a5d842a555040fa6c9d0c7 to your computer and use it in GitHub Desktop.
Number-only TextBox Filtering
private void TextBox_OnTextChanging(TextBox sender, TextBoxTextChangingEventArgs args)
{
sender.Text = new String(sender.Text.Where(char.IsDigit).ToArray());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment