gpt4 book ai didi

c# - 验证文本框是否为空且输入了数字

转载 作者:行者123 更新时间:2023-12-01 17:24:28 25 4
gpt4 key购买 nike

private void btnsave_Click(object sender, EventArgs e)
{
if (txtfname.Text == "" )
{
MessageBox.Show("Please enter your First Name");
txtfname.Focus();
}
}

我想验证一个文本框,以便人们不能将其留空,也不能添加数字。我是否必须编写“else if”语句,或者是否有任何运算符可以将其全部放入同一个 if 语句中。

最佳答案

您可以使用的运算符是 ||

string fName = txtfname.Text;
if (string.IsNullOrWhiteSpace(fName) || fName.Any(Char.IsDigit))
{
MessageBox.Show("Please enter your First Name without digits");
txtfname.Select();
}

关于c# - 验证文本框是否为空且输入了数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16157365/

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