■ VisualTreeHelper 클래스의 GetParent 정적 메소드를 사용해 조상 의존 객체 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (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 |
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Media; #region 조상 여부 구하기 - IsAncestorOf(parent, child) /// <summary> /// 조상 여부 구하기 /// </summary> /// <param name="parent">부모 의존 객체</param> /// <param name="child">자식 의존 객체</param> /// <returns>조상 여부</returns> public bool IsAncestorOf(DependencyObject parent, DependencyObject child) { DependencyObject current = child; bool isAncestor = false; while(current != null && !isAncestor) { if(current == parent) { isAncestor = true; } current = VisualTreeHelper.GetParent(current); } return isAncestor; } #endregion |