RelativeSource.AncestorType Proprietà

Definizione

Ottiene o imposta il tipo di predecessore da cercare.

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

Valore della proprietà

Type

Tipo di predecessore. Il valore predefinito è null.

Eccezioni

L'oggetto RelativeSource non è nella modalità FindAncestor.

Esempio

Di seguito viene restituito il secondo ItemsControl rilevato sul percorso verso l'alto a partire dall'elemento di destinazione dell'associazione.

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)

Commenti

Se la Mode proprietà non è impostata in modo esplicito, l'impostazione AncestorType della proprietà o blocca in modo implicito il valore della AncestorLevel Mode proprietà su FindAncestor.

Utilizzo del testo XAML

Per informazioni XAML, vedere RelativeSource MarkupExtension.

Si applica a

Vedi anche