Pregunta

How can I check if a masked text box in C# is empty, i.e. the user has not entered anything?

My text box only allows 4 numbers to be input.

Thanks

¿Fue útil?

Solución

You can check if Text property of the MaskedTextBox is null or String.Empty

if (String.IsNullOrEmpty(maskedTextBox1.Text))
{
    //no input
}

Otros consejos

Try this:

maskedTextBoxInput.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals;
if (maskedTextBoxInput.Text == "")
{
    ...
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top