本帖最后由 yllogininbh 于 2014-6-6 11:24 编辑
- private void radioButton1_CheckedChanged(object sender, EventArgs e)
- {
- foreach (Control ctl in this.Controls)
- {
- if (ctl is TextBox)
- {
- ((TextBox)ctl).Text=string.empty;
- }
- }
- }
-
复制代码
为radioButton的选择事件添加以上方法就可以清空所有textbox了 |