RelativeSource.AncestorType 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
찾을 상위 항목의 형식을 가져오거나 설정합니다.
public:
property Type ^ AncestorType { Type ^ get(); void set(Type ^ value); };
public Type AncestorType { get; set; }
member this.AncestorType : Type with get, set
Public Property AncestorType As Type
속성 값
상위 항목의 형식입니다. 기본값은 null
입니다.
예외
RelativeSource가 FindAncestor 모드가 아닌 경우
예제
다음 두 번째 반환 ItemsControl 바인딩 대상 요소부터 위쪽 경로에 오류가 발생 했습니다.
Binding myBinding = new Binding();
// Returns the second ItemsControl encountered on the upward path
// starting at the target element of the binding
myBinding.RelativeSource = new RelativeSource(
RelativeSourceMode.FindAncestor, typeof(ItemsControl), 2);
Dim myBinding As New Binding()
' Returns the second ItemsControl encountered on the upward path
' starting at the target element of the binding
myBinding.RelativeSource = New RelativeSource(RelativeSourceMode.FindAncestor, GetType(ItemsControl), 2)
설명
경우는 Mode 속성이 설정 되지 않으면 명시적으로 설정 합니다 AncestorType 또는 AncestorLevel 속성을 암시적으로 잠깁니다를 Mode 속성 값을 FindAncestor입니다.
XAML 텍스트 사용
XAML 정보는 RelativeSource MarkupExtension을 참조하세요.