C# 窗体中遍历文本框
时间:2020-06-16 18:46:26
收藏:0
阅读:75
foreach (Control control in ctls) 50 { 51 if (control is TextBox) 52 { 53 (control as TextBox).Enter += new EventHandler(SetTextBoxOnEnterStyle); 54 (control as TextBox).Leave += new EventHandler(SetTextBoxOnLeaveStyle); 55 } 56 57 if (control.Controls.Count > 0) 58 { 59 IterateControlsSetTextBox(control.Controls); 60 } 61 }
评论(0)