服务器之家

服务器之家 > 正文

WinForm遍历窗体所有子控件的方法

时间:2021-11-30 13:16     来源/作者:HTL

本文实例讲述了WinForm遍历窗体所有子控件的方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/// <summary>
/// C# 只遍历控件子控件,不遍历孙控件
///当控件有子控件时,需要用递归的方法遍历,才能全部列出控件上的控件
/// </summary>
/// <typeparam name="T">控件类型</typeparam>
/// <param name="control">要遍历的控件</param>
/// <param name="controlsName">控件名</param>
/// <returns></returns>
public static T GetControl<T>(Control control, string controlsName) where T : Control
{
  if (control == null) return null;
  Control _control;
  for (int i = 0; i < control.Controls.Count; i++)
  {
    _control = control.Controls[i];
    if (_control == null) return null;
    if (_control.Name == controlsName && _control is T)
      return (T)_control;
    if (_control.HasChildren)
    {
      _control = GetControl<T>(_control, controlsName);
      if (_control != null)
        return (T)_control;
    }
  }
  return null;
}
/// <summary>
/// 遍历窗体所有子控件
/// </summary>
/// <typeparam name="T">控件类型</typeparam>
/// <param name="form">窗体名</param>
/// <param name="controlsName">控件名</param>
/// <returns></returns>
public static T GetControl<T>(Form form, string controlsName) where T : Control
{
  T _Control = null;
  for (int i = 0; i < form.Controls.Count; i++)
  {
    _Control = GetControl<T>(form.Controls[i], controlsName);
    if (_Control != null)
      return _Control;
  }
  return null;
}

希望本文所述对大家C#程序设计有所帮助。

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部