Study/Programming
C# 모든 TextBox 초기화
탈퇴자
2010. 4. 28. 17:27
//TextBox 초기화
foreach (Control ctl in this.Controls)
{
if (typeof(System.Windows.Forms.TextBox) == ctl.GetType())
{
ctl.Text = null;
}
}