gpt4 book ai didi

c# - 如何验证是否至少选择了 5 个组合框中的 2 个 c#

转载 作者:行者123 更新时间:2023-11-30 16:42:24 25 4
gpt4 key购买 nike

我的表单上有 5 个组合框,我想通过检查用户是否至少从这 5 个组合框中选择了 2 个来验证表单。如何在 C# 代码中编写此条件?

我在谷歌和不同的网站上搜索了很多,但他们都在谈论在单个组合框中选择多个值,或者不是我要求的东西。

有人可以在这里透露一些信息吗?感谢你的帮助。谢谢。

最佳答案

您可以使用条件表达式计算所选组合框的数量。

这个表达式

int oneIfSelected = comboBox1.Selectedindex != -1 ? 1 : 0;

如果 comboBox1 选择了一个项目,则 1;否则将为零。

现在您可以像这样构造一个检查计数表达式:

int totalSelected = (comboBox1.Selectedindex != -1 ? 1 : 0)
+ (comboBox2.Selectedindex != -1 ? 1 : 0)
+ (comboBox3.Selectedindex != -1 ? 1 : 0)
+ (comboBox4.Selectedindex != -1 ? 1 : 0)
+ (comboBox5.Selectedindex != -1 ? 1 : 0);

如果五个组合框中至少有两个选择了一个值,则 totalSelected 将至少为 2。因此您可以像下面这样进行检查:

if(totalSelected >= 2)
{
//Your code here
}

关于c# - 如何验证是否至少选择了 5 个组合框中的 2 个 c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46816969/

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