博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#遍历控件的方法
阅读量:5050 次
发布时间:2019-06-12

本文共 473 字,大约阅读时间需要 1 分钟。

首先,要想遍历,就必须找到你想找的表单里面的所有控件,然后一个个的逐一比对,当找到了你需要的控件的时候,再做你需要的操作。

1、foreach方法

foreach (Control control in 表单信息.Controls) {
if (control is 控件类型) {
控件类型t = (控件类型)control; //逻辑代码 } }

示例:

foreach (Control control in this.Controls) {
if (control is TextBox) {
TextBox t = (TextBox)control; if (t.Text == "") {
//...... } } }

转载于:https://www.cnblogs.com/albert-struggle/archive/2011/11/28/2266250.html

你可能感兴趣的文章
Asp.net下from认证统一认证配置
查看>>
ECMAScript 面向对象技术:this 关键字
查看>>
51nod 1605:棋盘问题
查看>>
not in 语句使程充崩溃
查看>>
AngularJS bootStraping
查看>>
redis 缓存技术与memcache的区别
查看>>
android 学习Layout布局的使用
查看>>
安卓开发笔记(三十一):shape标签下子类根结点的具体使用
查看>>
Debugger Exception Notification
查看>>
选择排序
查看>>
Restful Api 最佳实践
查看>>
vue - .babelrc
查看>>
Shell test 命令
查看>>
css 权威指南笔记( 五)结构和层叠
查看>>
Linux下vim上编辑实现进度条
查看>>
(转)图解SSH原理
查看>>
oracle的to_number、to_char、to_date用法
查看>>
你不知道的Google应用
查看>>
10.文件的输入输出、异常
查看>>
Hashtable, ArrayList, List, Dictionary学习[转]
查看>>