码迷,mamicode.com
首页 > Windows程序 > 详细

C# 窗体中遍历文本框

时间:2020-06-16 18:46:26      阅读:75      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!