我在 VS 2012 中使用 C# 和 WinForms 为我的应用程序工作,我很好奇我应该使用什么样的例程来清除所有输入数据的方法,包括文本框、组合框和日期时间选择器。我用谷歌搜索并找到了一些“答案”,但似乎没有一个有效或实际上证明有帮助。
[编辑]:
我一直在研究,实际上发现了一个有用的方法,我只需要添加一些 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();
}
}
}
}