我正在尝试遍历窗口中的文本框,以便对它们进行操作。这是我的代码:
foreach (Control c in Controls)
{
if (c is System.Windows.Forms.TextBox)
{
MessageBox.Show(c.Name);
}
}
我在 的行上放了一个断点if
,我的程序到达了那个断点,但它没有到达该MessageBox
行...错误在哪里?(我对此进行了测试c is Button
并且它有效......)