//清空金额汇总
foreach (System.Windows.Forms.Control control in this.GroupBox1.Controls)
{
if(control is TextBox)
{
control.Text="0";
}
}
循环清空控件值
最新推荐文章于 2024-09-26 17:04:16 发布
//清空金额汇总
foreach (System.Windows.Forms.Control control in this.GroupBox1.Controls)
{
if(control is TextBox)
{
control.Text="0";
}
}