c#扩展方法奇思妙用高级篇六:WinForm 控件选择器
2010-09-30 21:04:03 来源:WEB开发网
图7 示例窗体
Form1是顶级控件,它包含了四个子控件:groupBox1、groupBox2、button1、button2。groupBox1和groupBox2中也包含了多个控件。层层包含最终形成了一个树型结构。
我们打造的WinForm的控件选择器,实质上就是一个树的遍历器。下是就是该选择器的参考实现代码:
1 public static IEnumerable<T> GetControls<T>(this Control control, Func<T, bool> filter) where T : Control
2 {
3 foreach (Control c in control.Controls)
4 {
5 if (c is T)
6 {
7 T t = c as T;
8 if (filter != null)
9 {
10 if (filter(t))
11 {
12 yield return t;
13 }
14 else
15 {
16 foreach (T _t in GetControls<T>(c, filter))
17 yield return _t;
18 }
19 }
20 else
21 yield return t;
22 }
23 else
24 {
25 foreach (T _t in GetControls<T>(c, filter))
26 yield return _t;
27 }
28 }
29 }
(代码中存在一处bug,请参见斯克迪亚的回复#4楼)
有了GetControls选择器,我们就可以在WinForm中进行一些“复杂”应用,示例如下(以图7为例):
1 // 构造函数
2 public Form1()
3 {
4 InitializeComponent();
5 //禁用所有Button
6 this.GetControls<Button>(null).ForEach(b => b.Enabled = false);
7 //反选groupBox1中CheckBox
8 this.GetControls<CheckBox>(c => c.Parent == groupBox1)
9 .ForEach(c => c.Checked = !c.Checked);
10 //将label1的前景色设为红色
11 this.GetControls<Label>(l => l.Name == "label1").FirstOrDefault().ForeColor
12 = Color.Red;
13 }
附上常用的ForEach扩展:
1 public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
2 {
3 foreach (var item in source)
4 action(item);
5 }
感觉如何?欢迎批评指正!
- ››扩展Axis2框架,支持基于JVM的脚本语言
- ››扩展WebSphere Portal V6个性化功能
- ››扩展JavaScript的时候,千万要保留其原来的所有功...
- ››扩展数据:如何为 Model 750 服务器选择 I/O 扩展...
- ››扩展 JDT 实现自动代码注释与格式化
- ››扩展 secldap 的功能以验证多个数据源
- ››扩展 JUnit4 以促进测试驱动开发
- ››扩展 JUnit 测试并行程序
- ››扩展的ToolStripEx控件
- ››扩展 Eclipse 的 Java 开发工具
- ››扩展 Eclipse 辅助和规范开发流程
- ››扩展方法 DataTable 和List 相互转换
更多精彩
赞助商链接