Masked TextBox验证文本错误

时间:2012-02-09 09:13:43

标签: c# winforms

我在使用WinForms应用程序上的蒙版文本框中提取的日期变量时遇到了一些麻烦。 尝试读取用户输入日期的代码如下:

DateTime datExpDate = new DateTime();
datExpDate = (DateTime)txtExpDate.ValidateText();     

但是我得到一个NullReferenceException错误,即使屏蔽文本框肯定不是Null。

屏蔽文本框中的属性包括:

面具:00/00/0000 验证类型:DateTime TextMaskFormat:IncludeLiterals

这就像我在以前的应用程序中使用蒙面文本框一样,然后它就可以了,所以为什么不呢?

有人能发现我做错了吗?

1 个答案:

答案 0 :(得分:1)

以下是MSDN的解决方案:

    private void Form1_Load(object sender, EventArgs e)
{
    maskedTextBox1.Mask = "00/00/0000";
    maskedTextBox1.ValidatingType = typeof(System.DateTime);
    maskedTextBox1.TypeValidationCompleted += new TypeValidationEventHandler(maskedTextBox1_TypeValidationCompleted);
    maskedTextBox1.KeyDown += new KeyEventHandler(maskedTextBox1_KeyDown);

    toolTip1.IsBalloon = true;
}

void maskedTextBox1_TypeValidationCompleted(object sender, TypeValidationEventArgs e)
{
    if (!e.IsValidInput)
    {
        toolTip1.ToolTipTitle = "Invalid Date";
        toolTip1.Show("The data you supplied must be a valid date in the format mm/dd/yyyy.", maskedTextBox1, 0, -20, 5000);
    }
    else
    {
        //Now that the type has passed basic type validation, enforce more specific type rules.
        DateTime userDate = (DateTime)e.ReturnValue;
        if (userDate < DateTime.Now)
        {
            toolTip1.ToolTipTitle = "Invalid Date";
            toolTip1.Show("The date in this field must be greater than today's date.", maskedTextBox1, 0, -20, 5000);
            e.Cancel = true;
        }
    }
}

// Hide the tooltip if the user starts typing again before the five-second display limit on the tooltip expires.

void maskedTextBox1_KeyDown(object sender, KeyEventArgs e)
{
    toolTip1.Hide(maskedTextBox1);
}

LINK:http://msdn.microsoft.com/en-us/library/system.windows.forms.maskedtextbox.validatingtype.aspx