如果界面上需要清空的控件比较少的话 利用代码如下
This.lblName.Text=””
但是如果该界面上有10个以上的TextBox 或Lable控件呢 你又该如何清空呢
string mytext;
foreach(Control co in this.Controls)
{
mytext=co.GetType().ToString();
if(mytext=="System.Windows.Forms.TextBox")
((TextBox)co).Text="";
if(mytext=="System.Windows.Forms.Label"
((Label)co).Text="";
}
-----
这个也是一些公司常提到的面试题目。请慎重考虑。这是最最基本的。