Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Aggiornamento: novembre 2007
In questo argomento viene illustrato come recuperare oggetti pattern di controllo da elementi automazione interfaccia utente.
Ottenere tutti i pattern di controllo
Ottenere AutomationElement per i cui pattern di controllo si è interessati.
Chiamare il metodo GetSupportedPatterns per ottenere tutti i pattern di controllo dall'elemento.
Attenzione: |
|---|
È opportuno evitare che un client utilizzi GetSupportedPatterns, per evitare ripercussioni sulle prestazioni. Questo metodo, infatti, chiama GetCurrentPattern internamente per ogni pattern di controllo esistente. Se possibile, un client deve chiamare GetCurrentPattern per i principali pattern di interesse. |
Ottenere un pattern di controllo specifico
Ottenere AutomationElement per i cui pattern di controllo si è interessati.
Chiamare GetCurrentPattern o TryGetCurrentPattern per eseguire una query per un pattern specifico. Questi metodi sono simili, ma se il pattern non viene trovato, il metodo GetCurrentPattern genera un'eccezione e il metodo TryGetCurrentPattern restituisce false.
Esempio
Nell'esempio riportato di seguito viene recuperato un oggetto AutomationElement per un elemento dell'elenco e viene ottenuto un oggetto SelectionItemPattern da tale elemento.
''' <summary>
''' Sets the focus to a list and selects a string item in that list.
''' </summary>
''' <param name="listElement">The list element.</param>
''' <param name="itemText">The text to select.</param>
''' <remarks>
''' This deselects any currently selected items. To add the item to the current selection
''' in a multiselect list, use AddToSelection instead of Select.
''' </remarks>
Public Sub SelectListItem(ByVal listElement As AutomationElement, ByVal itemText As String)
If listElement Is Nothing OrElse itemText = "" Then
Throw New ArgumentException("Argument cannot be null or empty.")
End If
listElement.SetFocus()
Dim cond As New PropertyCondition(AutomationElement.NameProperty, itemText, PropertyConditionFlags.IgnoreCase)
Dim elementItem As AutomationElement = listElement.FindFirst(TreeScope.Children, cond)
If Not (elementItem Is Nothing) Then
Dim pattern As SelectionItemPattern
Try
pattern = DirectCast(elementItem.GetCurrentPattern(SelectionItemPattern.Pattern), _
SelectionItemPattern)
Catch ex As InvalidOperationException
Console.WriteLine(ex.Message) ' Most likely "Pattern not supported."
Return
End Try
pattern.Select()
End If
End Sub 'SelectListItem
/// <summary>
/// Sets the focus to a list and selects a string item in that list.
/// </summary>
/// <param name="listElement">The list element.</param>
/// <param name="itemText">The text to select.</param>
/// <remarks>
/// This deselects any currently selected items. To add the item to the current selection
/// in a multiselect list, use AddToSelection instead of Select.
/// </remarks>
public void SelectListItem(AutomationElement listElement, String itemText)
{
if ((listElement == null) || (itemText == ""))
{
throw new ArgumentException("Argument cannot be null or empty.");
}
listElement.SetFocus();
Condition cond = new PropertyCondition(
AutomationElement.NameProperty, itemText, PropertyConditionFlags.IgnoreCase);
AutomationElement elementItem = listElement.FindFirst(TreeScope.Children, cond);
if (elementItem != null)
{
SelectionItemPattern pattern;
try
{
pattern = elementItem.GetCurrentPattern(SelectionItemPattern.Pattern) as SelectionItemPattern;
}
catch (InvalidOperationException ex)
{
Console.WriteLine(ex.Message); // Most likely "Pattern not supported."
return;
}
pattern.Select();
}
}
Vedere anche
Concetti
Pattern di controllo di automazione interfaccia utente per i client
Attenzione: