WinForm에서 이름별로 컨트롤을 찾는 방법

2028 단어
본고에서 기술한 실례는 주로 WinForm이 명칭에 따라 컨트롤러를 찾는 기능을 실현했고 C# 프로젝트 개발에서 어느 정도 응용 가치가 있기 때문에 여러분에게 참고하고 참고할 수 있도록 공유했다.
키 코드는 다음과 같습니다.

/// 
///  
/// 
///  
///  
///  NULL
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;
}
/// 
///  Control 
/// 
///  
/// Control
///  
///  ; NULL
public static T Cast(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(out _sucess);
if (_sucess)
{
 MessageBox.Show(_finded.Name);
}
else
{
 MessageBox.Show("Not Finded.");
}


본고에서 서술한 실례가 여러분의 C# 프로그램 설계에 도움이 되었으면 합니다!

좋은 웹페이지 즐겨찾기