我通常使用此代码清空表单的所有文本框,使用 bunifu 控件时它不起作用
```
public void Clear(Control c)
{
foreach(Control ct in c.Controls)
{
if(ct.GetType() == typeof(TextBox) || ct.GetType() == typeof(ComboBox))
{
ct.Text = "";
}
if(ct.Controls.Count != 0)
{
Clear(ct);
}
}
}