作业帮 > 化学 > 作业

在 C# 中 Control control in this.Controls

来源:学生作业帮 编辑:搜搜做题作业网作业帮 分类:化学作业 时间:2024/05/03 13:29:20
在 C# 中 Control control in this.Controls
在 C# 中 Control control in this.Controls
就是把form上的每一个控件遍历一次.由于form上的每一个控件都继承于 Control类,这里一般用在 foreach(Control control in this.Controls )句型里面,是遍历form上的每个控件元素,把每个当前控件装箱成 control实例,进行操作.