RelativeSource.AncestorType Propriedade

Definição

Obtém ou define o tipo de ancestral a ser procurado.

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

Valor da propriedade

Type

O tipo de ancestral. O valor padrão é null.

Exceções

Exemplos

O seguinte retorna o segundo ItemsControl encontrado no caminho para cima, começando no elemento de destino da associação.

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)

Comentários

Se a Mode propriedade não estiver definida explicitamente, a configuração ou AncestorType a AncestorLevel propriedade bloqueará implicitamente o valor da Mode propriedade como FindAncestor.

Uso de texto XAML

Para obter informações XAML, consulte RelativeSource MarkupExtension.

Aplica-se a

Confira também