I am already blocking empty input now and I need to block numerical input for my textbox but I do not know how to do this
Here is my partial code
if (AmateurCheckBox.IsChecked == true)
{
if (String.IsNullOrEmpty(NewNameTextBox.Text))
{
Prompt();
}
else
{
MessageBox.Show("Amateur Competitor Added.");
}
}