SelectionItemPattern.SelectionContainerProperty Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Identifie la propriété SelectionContainer.
public: static initonly System::Windows::Automation::AutomationProperty ^ SelectionContainerProperty;
public static readonly System.Windows.Automation.AutomationProperty SelectionContainerProperty;
staticval mutable SelectionContainerProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly SelectionContainerProperty As AutomationProperty
Valeur de champ
Exemples
L’exemple suivant montre comment récupérer le AutomationElement représentant le conteneur de sélection d’un élément de sélection.
///--------------------------------------------------------------------
/// <summary>
/// Retrieves the selection items for a selection container.
/// </summary>
/// <param name="rootElement">
/// The automation element from which to start searching.
/// </param>
/// <param name="selectionContainer">
/// An automation element that supports SelectionPattern.
/// </param>
/// <returns>
/// A collection of automation elements satisfying
/// the specified condition(s).
/// </returns>
///--------------------------------------------------------------------
private AutomationElementCollection FindElementBasedOnContainer(
AutomationElement rootElement, AutomationElement selectionContainer)
{
PropertyCondition containerCondition =
new PropertyCondition(
SelectionItemPattern.SelectionContainerProperty,
selectionContainer);
AutomationElementCollection selectionItems =
rootElement.FindAll(TreeScope.Descendants, containerCondition);
return selectionItems;
}
'''--------------------------------------------------------------------
''' <summary>
''' Retrieves the selection items for a selection container.
''' </summary>
''' <param name="rootElement">
''' The automation element from which to start searching.
''' </param>
''' <param name="selectionContainer">
''' An automation element that supports SelectionPattern.
''' </param>
''' <returns>
''' A collection of automation elements satisfying
''' the specified condition(s).
''' </returns>
'''--------------------------------------------------------------------
Private Function FindElementBasedOnContainer( _
ByVal rootElement As AutomationElement, _
ByVal selectionContainer As AutomationElement) As AutomationElementCollection
Dim containerCondition As PropertyCondition = _
New PropertyCondition( _
SelectionItemPattern.SelectionContainerProperty, _
selectionContainer)
Dim selectionItems As AutomationElementCollection = _
rootElement.FindAll(TreeScope.Descendants, containerCondition)
Return selectionItems
End Function
Remarques
Cet identificateur est utilisé par UI Automation applications clientes. UI Automation fournisseurs doivent utiliser le champ équivalent dans SelectionItemPatternIdentifiers.