[求助]如何批量设置控件?
Form里有很多TextBox 或者 很多 Button我想一起设置它们的属性,比如:
this.TextBox1.enabled=false;
this.TextBox2.enabled=false;
this.TextBox3.enabled=false;
...
this.Button1.enabled=True;
this.Button23.enabled=True;
....
有什么方法用一句话可以分别设置TextBox和Button它们的属性?
TextBox--->
Button---->