■ LogicalTreeHelper 클래스의 GetChildren 정적 메소드를 사용해 논리적 자식 열거 가능형을 구하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System.Collections.Generic; using System.Windows; #region 논리적 자식 열거 가능형 구하기 - GetLogicalChildEnumerable(parent) /// <summary> /// 논리적 자식 열거 가능형 구하기 /// </summary> /// <param name="parent">부모</param> /// <returns>비주얼 자식 열거 가능형</returns> public IEnumerable<DependencyObject> GetLogicalChildEnumerable(DependencyObject parent) { foreach(DependencyObject child in LogicalTreeHelper.GetChildren(parent).OfType<DependencyObject>()) { yield return child; foreach(DependencyObject grandChild in GetLogicalChildEnumerable(child)) { yield return grandChild; } } } #endregion |