RelativeSource.AncestorType Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
O tipo de ancestral. O valor padrão é null
.
Exceções
A RelativeSource não está no modo FindAncestor.
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.