gpt4 book ai didi

c# - 在 Csharp winform 中将所有空字符串文本框 ("") 设置为空值的简单方法是什么?

转载 作者:行者123 更新时间:2023-11-30 19:31:14 24 4
gpt4 key购买 nike

假设我不想用

if (string.IsNullOrEmpty(textbox1.Text))
{
textbox1.Text = null;
}

对于表单中的每个文本框控件,有更简单的方法吗?

最佳答案

简单的方法是循环遍历每个控件,看下面的代码

 foreach (Control C in this.Controls)
{
if (C is TextBox)
{
if (C.Text == "")
{
C.Text = null;
}
}
}

关于c# - 在 Csharp winform 中将所有空字符串文本框 ("") 设置为空值的简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7524252/

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