■ Visual 클래스를 사용해 명칭으로 자손을 찾는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using System.Windows; using System.Windows.Media; #region 명칭으로 자손 찾기 - FindDescendantByName(source, name) /// <summary> /// 명칭으로 자손 찾기 /// </summary> /// <param name="source">소스 객체</param> /// <param name="name">명칭</param> /// <returns>자속 객체</returns> public Visual FindDescendantByName(Visual source, string name) { if(source != null && (source is FrameworkElement) && (source as FrameworkElement).Name == name) { return source; } Visual target = null; if(source is FrameworkElement) { (source as FrameworkElement).ApplyTemplate(); } for(int i = 0; i < VisualTreeHelper.GetChildrenCount(source); i++) { Visual child = VisualTreeHelper.GetChild(source, i) as Visual; target = FindDescendantByName(child, name); if(target != null) { break; } } return target; } #endregion |