gpt4 book ai didi

c# - 检查 dataGridView 是否在其任何单元格上设置了 errorText

转载 作者:太空狗 更新时间:2023-10-29 22:24:54 26 4
gpt4 key购买 nike

我如何知道 datagridview 的任何单元格上是否有 errorText。我有一个保存按钮,只有当所有单元格值都有效时我才想启用它,这意味着没有单元格设置了 errorText

最佳答案

在您的代码中使用此方法:

private bool HasErrorText()
{
bool hasErrorText = false;
//replace this.dataGridView1 with the name of your datagridview control
foreach (DataGridViewRow row in this.dataGridView1.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
if (cell.ErrorText.Length > 0)
{
hasErrorText = true;
break;
}
}
if (hasErrorText)
break;
}

return hasErrorText;
}

关于c# - 检查 dataGridView 是否在其任何单元格上设置了 errorText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2400490/

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