C# 窗体中遍历文本框
2021-01-07 21:32
标签:col pre handler leaves div event bsp iter tls C# 窗体中遍历文本框 标签:col pre handler leaves div event bsp iter tls 原文地址:https://www.cnblogs.com/yangxukai/p/13143297.htmlforeach (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 }
上一篇:获取股票行情API 接口
下一篇:API接口规范