我有一个名为A的表格.
A包含许多不同的控件,包括主GroupBox.此GroupBox包含许多表和其他GroupBox.我想找一个控件,例如表单A中的tab索引9,但我不知道哪个GroupBox包含此控件.
我怎样才能做到这一点?
解决方法
随着递归……
@H_403_10@public static IEnumerable<T> Descendants<T>( this Control control ) where T : class
{
foreach (Control child in control.Controls) {
T childOfT = child as T;
if (childOfT != null) {
yield return (T)childOfT;
}
if (child.HasChildren) {
foreach (T descendant in Descendants<T>(child)) {
yield return descendant;
}
}
}
}
你可以使用上面的功能:
@H_403_10@var checkBox = (from c in myForm.Descendants<CheckBox>() where c.TabIndex == 9 select c).FirstOrDefault();这将获得TabIndex为9的表单中的第一个CheckBox.您显然可以使用您想要的任何条件.
@H_403_10@var checkBox = myForm.Descendants<CheckBox>() .FirstOrDefault(x=>x.TabIndex==9);