6

为了清除我的文本框,我在表单中使用了以下代码:

foreach (Control c in this.Controls)
{
    if (c is TextBox || c is RichTextBox)
    {
        c.Text = "";
    }
}

但现在我的文本框位于 TabControl 中。如何对文本框运行相同类型的检查,如果控件是文本框,请将值设置为“”。我已经尝试过使用:

foreach(Control c in tabControl1.Controls)

但这没有用。

4

4 回答 4

16

用这个

foreach (TabPage t in tabControl1.TabPages)
{
    foreach (Control c in t.Controls)
    { 
        if (c is TextBox || c is RichTextBox)
        {
            c.Text = "";
        }
    }
}
于 2012-05-23T21:45:54.383 回答
5

您也可以使用Enumerable.OfType. TextBox并且RichTextBox是唯一继承自 的控件TextBoxBase,这是您要查找的类型:

var allTextControls = tabControl1.TabPages.Cast<TabPage>() 
   .SelectMany(tp => tp.Controls.OfType<TextBoxBase>());
foreach (var c in allTextControls)
    c.Text = "";
于 2012-05-23T21:52:59.683 回答
1

tabControl1.Controls 不起作用,因为选项卡控件包含TabPages。您需要定位正确的页面。

或者,您可以构建一个递归方法来执行此操作:

static void RecurseClearAllTextBoxes(Control parent)
{
    foreach (Control control in parent.Controls)
    {
        if (control is TextBox || control is RichTextBox)
            control.Text = String.Empty;
        else
            RecurseClearAllTextBoxes(control);
    }

    if (parent is TabControl)
    {
        foreach (TabPage tabPage in ((TabControl)parent).TabPages)
            RecurseClearAllTextBoxes(tabPage);
    }
}
于 2012-05-23T21:45:11.260 回答
1

Limpiar 控制

        foreach (Control C in GB.Controls)
        { 
            if(C is TextBox)
            {
                (C as TextBox).Clear();
            }
            if(C is DateTimePicker)
            {
                (C as DateTimePicker).Value = DateTime.Now;
            }
            if (C is ComboBox)
            {
                (C as ComboBox).SelectedIndex = 0;
            }
        }
于 2016-05-24T21:47:40.207 回答