■ 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 44 45 46 47 48 49 50 51 52 53 54 |
using System.Windows; using System.Windows.Media; #region 속성 값을 갖는 자손 찾기 - FindDescendantWithPropertyValue(source, property, value) /// <summary> /// 속성 값을 갖는 자손 찾기 /// </summary> /// <param name="source">소스 객체</param> /// <param name="property">속성</param> /// <param name="value">값</param> /// <returns>자손 객체</returns> public Visual FindDescendantWithPropertyValue(Visual source, DependencyProperty property, object value) { if(source == null) { return null; } if(source.GetValue(property) == null) { return null; } if(source.GetValue(property).Equals(value)) { 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 = FindDescendantWithPropertyValue(child, property, value); if(target != null) { break; } } return target; } #endregion |