gpt4 book ai didi

c# - 在 C# 中单击按钮时验证文本框是数字

转载 作者:行者123 更新时间:2023-11-30 21:01:56 24 4
gpt4 key购买 nike

<分区>

我目前有一个 WinForm,其中包含姓名、地址、邮政编码、州和年龄。

一旦用户输入数据,他们单击“退出”按钮以确认没有字段为空,然后将数据保存到文件中。我想添加邮政编码验证以确认文本框 (ZipField) 仅包含数字。

    private void Btn_Click(object sender, EventArgs e)
{

if (String.IsNullOrEmpty(NField.Text) || String.IsNullOrEmpty(AField.Text) ||
String.IsNullOrEmpty(ZField.Text) || String.IsNullOrEmpty(SField.Text) ||
String.IsNullOrEmpty(AField.Text))
{
MessageBox.Show("Please complete", "Unable to save", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

return;
}
saveInfo();
Form myForm = Start.getForm();
myForm.Show();
this.Close();
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com