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