雷火电竞-中国电竞赛事及体育赛事平台

歡迎來到入門教程網(wǎng)!

C#教程

當(dāng)前位置:主頁 > 軟件編程 > C#教程 >

WinForm遍歷窗體所有子控件的方法

來源:本站原創(chuàng)|時(shí)間:2020-01-10|欄目:C#教程|點(diǎn)擊:

本文實(shí)例講述了WinForm遍歷窗體所有子控件的方法。分享給大家供大家參考,具體如下:

/// <summary>
/// C# 只遍歷控件子控件,不遍歷孫控件
///當(dāng)控件有子控件時(shí),需要用遞歸的方法遍歷,才能全部列出控件上的控件
/// </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;
}

更多關(guān)于C#相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《WinForm控件用法總結(jié)》、《C#窗體操作技巧匯總》、《C#常見控件用法教程》、《C#程序設(shè)計(jì)之線程使用技巧總結(jié)》、《C#操作Excel技巧總結(jié)》、《C#中XML文件操作技巧匯總》、《C#數(shù)據(jù)結(jié)構(gòu)與算法教程》、《C#數(shù)組操作技巧總結(jié)》及《C#面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》

希望本文所述對大家C#程序設(shè)計(jì)有所幫助。

上一篇:C#中實(shí)現(xiàn)線程同步lock關(guān)鍵字的用法詳解

欄    目:C#教程

下一篇:ActiveMQ在C#中的應(yīng)用示例分析

本文標(biāo)題:WinForm遍歷窗體所有子控件的方法

本文地址:http://www.jygsgssxh.com/a1/C_jiaocheng/6374.html

網(wǎng)頁制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語言數(shù)據(jù)庫服務(wù)器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時(shí)內(nèi)進(jìn)行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負(fù)任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有