0

我有一个名为 txtchild 的文本框。我希望它只需要两位数。当用户输入超过两位数字时,它会给出错误消息。

请帮忙

4

1 回答 1

0
    private void txtchild_KeyPress(object sender, KeyPressEventArgs e)
    {
      if(txtchild.Text.lenght>2)
       {
        e.Handled = true;
       }
      else
       {
          MessageBox.Show("Value must be Two digit");
       }
    }
于 2013-10-01T10:45:49.713 回答