c# – 如何在Windows窗体中获取窗体的所有控件?

前端之家收集整理的这篇文章主要介绍了c# – 如何在Windows窗体中获取窗体的所有控件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为A的表格.

A包含许多不同的控件,包括主GroupBox.此GroupBox包含许多表和其他GroupBox.我想找一个控件,例如表单A中的tab索引9,但我不知道哪个GroupBox包含此控件.

我怎样才能做到这一点?

解决方法

随着递归……
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;
            }
        }
    }
}

你可以使用上面的功能

var checkBox = (from c in myForm.Descendants<CheckBox>()
                where c.TabIndex == 9
                select c).FirstOrDefault();

这将获得TabIndex为9的表单中的第一个CheckBox.您显然可以使用您想要的任何条件.

如果您不是LINQ查询语法的粉丝,可以将以上内容重写为:

var checkBox = myForm.Descendants<CheckBox>()
                     .FirstOrDefault(x=>x.TabIndex==9);
原文链接:https://www.f2er.com/csharp/98304.html

猜你在找的C#相关文章