WinForm控件查找奇思
2009-11-20 09:59 破狼 阅读(2452) 评论(15) 编辑 收藏 举报代码很简单,就不用解释了,直接贴↑。
public delegate bool SearchHandler(Control ctrFind);
public class WinSearch<T>
{
//ctr:查找起点控件。
public static T Search(Control ctr, SearchHandler handler)
{
if (handler == null)
throw new Exception("Handler must be not null");
if (ctr == null)
throw new Exception("Parent Control must be not null");
if (!(ctr is Control))
throw new Exception("The fist parameter must be innert from Control");
return SearchProxy(ctr, handler);
}
protected static T SearchProxy(Control ctr,SearchHandler handler)
{
if (ctr.Controls.Count < 1)
{
return default(T);
}
else
{
foreach (Control child in ctr.Controls)
{
if (child is T && handler(child))//注意返回范型类型应是如此才会返回。
{
return (T)(object)child;
}
else
{
foreach (Control ch in child.Controls)
{
object obj = SearchProxy(ch, handler);
if (obj !=null)
{
return (T)obj;
}
}
}
}
return default(T);
}
}
}
测试体:
{
Button btn = WinSearch<Button>.Search(this, new SearchHandler(mehtod));
if (btn != null)
{
MessageBox.Show(btn.Text);
}
}
public bool mehtod(Control ctr)
{
if (ctr.Text =="button2")
return true;
return false;
}
作者:破 狼
出处:http://www.cnblogs.com/whitewolf/
本文版权归作者,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。该文章也同时发布在我的独立博客中-个人独立博客、博客园--破狼和51CTO--破狼。