我在VS 2012中使用C#和WinForms为我的应用程序工作,我很好奇我应该用什么样的例程来清除所有输入数据的方法,包括文本框,组合框和日期时间选择器。我用Google搜索并找到了一些“答案”,但似乎没有任何工作或实际证明有用。
[编辑]:
我一直在研究并且实际上找到了一个有用的方法,我只需添加一些ifs来获得我想要的东西:
private void ResetFields()
{
foreach (Control ctrl in this.Controls)
{
if (ctrl is TextBox)
{
TextBox tb = (TextBox)ctrl;
if (tb != null)
{
tb.Text = string.Empty;
}
}
else if (ctrl is ComboBox)
{
ComboBox dd = (ComboBox)ctrl;
if (dd != null)
{
dd.Text = string.Empty;
dd.SelectedIndex = -1;
}
}
else if (ctrl is DateTimePicker)
{
DateTimePicker dtp = (DateTimePicker)ctrl;
if (dtp != null)
{
dtp.Text = DateTime.Today.ToShortDateString();
}
}
}
}
答案 0 :(得分:2)
喜欢这个:
void ClearThem(Control ctrl)
{
ctrl.Text = "";
foreach (Control childCtrl in ctrl.Controls) ClearThem(childCtrl);
}
然后:
ClearThem(this);
另一种选择: 创建一个派生自Panel的类,包含您需要的所有内容,并将其停靠在Form中。当您需要“刷新”时 - 只需将该Panel替换为该Panel的新实例。
答案 1 :(得分:1)
您可以循环访问表单的所有控件并根据控件类型清除
答案 2 :(得分:1)
我们可以清除所有Textboxes
,Comboboxes
,但不能清除DateTimePicker
如果要清除DateTimePicker
,则必须设置属性:
Format = Custom
,CustomFormat = " "
以及您想要在DateTimePicker
private void dateTimePicker1_CloseUp(object sender, EventArgs e)
{
dateTimePicker1.Format = DateTimePickerFormat.Short;
}
这可能是解决方案:
public static void ClearAll(Control control)
{
foreach (Control c in control.Controls)
{
var texbox = c as TextBox;
var comboBox = c as ComboBox;
var dateTimePicker = c as DateTimePicker;
if (texbox != null)
texbox.Clear();
if (comboBox != null)
comboBox.SelectedIndex = -1;
if (dateTimePicker != null)
{
dateTimePicker.Format = DateTimePickerFormat.Short;
dateTimePicker.CustomFormat = " ";
}
if (c.HasChildren)
ClearAll(c);
}
}
答案 3 :(得分:0)
遍历表单控件,将它们与您的类型匹配并将其设置为“”或null;