C# 窗体中遍历文本框

2021-01-07 21:32

阅读:704

标签:col   pre   handler   leaves   div   event   bsp   iter   tls   

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             }

 

C# 窗体中遍历文本框

标签:col   pre   handler   leaves   div   event   bsp   iter   tls   

原文地址:https://www.cnblogs.com/yangxukai/p/13143297.html


评论


亲,登录后才可以留言!