所以,我有一个带有TableLayoutPanel的Form,其中包含文本框。我需要代码来检查表单上是否有文本框,并且该文本框为空-然后在其中编写文本否则{继续寻找现有的空文本框}顺序无关紧要
foreach (Control contr in tableLayoutPanel1.Controls)
{
if (contr is RichTextBox)
{
if ((contr as RichTextBox).Text == string.Empty)
{
contr.Text = str_product;
}
}
}