时间:2021-05-20
本文所述实例主要实现了WinForm实现按名称递归查找控件的功能,在C#项目开发中有一定的应用价值,分享给大家供大家参考借鉴。
关键代码如下:
/// <summary>/// 向下递归查找控件/// </summary>/// <param name="parentControl">查找控件的父容器控件</param>/// <param name="findCtrlName">查找控件名称</param>/// <returns>若没有查找到返回NULL</returns>public static Control DownRecursiveFindControl(this Control parentControl, string findCtrlName){ Control _findedControl = null; if (!string.IsNullOrEmpty(findCtrlName) && parentControl != null) { foreach (Control ctrl in parentControl.Controls) { if (ctrl.Name.Equals(findCtrlName)) { _findedControl = ctrl; break; } else { if (ctrl.Controls.Count > 0) _findedControl = DownRecursiveFindControl(ctrl, findCtrlName); } } } return _findedControl;}/// <summary>/// 将Control转换某种控件类型/// </summary>/// <typeparam name="T">控件类型</typeparam>/// <param name="control">Control</param>/// <param name="result">转换结果</param>/// <returns>若成功则返回控件;若失败则返回NULL</returns>public static T Cast<T>(this Control control, out bool result) where T : Control{ result = false; T _castCtrl = null; if (control != null) { if (control is T) { try { _castCtrl = control as T; result = true; } catch (Exception ex) { Debug.WriteLine(string.Format("将Control转换某种控件类型异常,原因:{0}", ex.Message)); result = false; } } } return _castCtrl;}测试代码如下:
bool _sucess = false;CheckBox _finded = this.DownRecursiveFindControl("checkBox1").Cast<CheckBox>(out _sucess);if (_sucess){ MessageBox.Show(_finded.Name);}else{ MessageBox.Show("Not Finded.");}希望本文所述实例能够对大家的C#程序设计有所帮助!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文所述实例实现WinForm自定义函数FindControl实现按名称查找控件的功能,在C#程序开发中有一定的实用价值。分享给大家供大家参考。关键代码如下:/
本文实例讲述了WinForm实现移除控件某个事件的方法,供大家参考借鉴一下。具体功能代码如下:主要功能部分代码如下://////移除控件某个事件//////控件
本文实例讲述了C#中WinForm跨线程访问控件的实现方法,分享给大家供大家参考。具体实现方法如下:1、跨线程访问控件委托和类的定义复制代码代码如下:using
本文实例讲述了WinForm实现最小化到系统托盘方法。分享给大家供大家参考。具体分析如下:有个叫NotifyIcon的控件1、建个WinForm项目,其它操作略
//获取某容器控件中id包含某字符串的控件id列表//参数:容器控件、要查找的控件的id关键字、要查找的控件的标签名称//返回值:查找到的控件id列表字符串,以