AndCondition(Condition[]) Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un PropertyCondition che è true se tutte le sottocondizioni sono true.
public:
AndCondition(... cli::array <System::Windows::Automation::Condition ^> ^ conditions);
public AndCondition (params System.Windows.Automation.Condition[] conditions);
new System.Windows.Automation.AndCondition : System.Windows.Automation.Condition[] -> System.Windows.Automation.AndCondition
Public Sub New (ParamArray conditions As Condition())
Parametri
- conditions
- Condition[]
Due o più sottocondizioni.
Esempio
Nell'esempio seguente viene illustrato come usare AndCondition per trovare Automazione interfaccia utente elementi che corrispondono a una condizione complessa.
/// <summary>
/// Uses AndCondition to retrieve elements that match both of two conditions.
/// </summary>
/// <param name="elementMainWindow">An application window element.</param>
public void AndConditionExample(AutomationElement elementMainWindow)
{
if (elementMainWindow == null)
{
throw new ArgumentException();
}
AndCondition conditionEnabledButtons = new AndCondition(
new PropertyCondition(AutomationElement.IsEnabledProperty, true),
new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Button));
AutomationElementCollection enabledButtons = elementMainWindow.FindAll(
TreeScope.Subtree, conditionEnabledButtons);
Console.WriteLine("\nEnabled buttons:");
foreach (AutomationElement autoElement in enabledButtons)
{
Console.WriteLine(autoElement.Current.Name);
}
// Example of getting the conditions from the AndCondition.
Condition[] conditions = conditionEnabledButtons.GetConditions();
Console.WriteLine("AndCondition has " + conditions.GetLength(0) + " subconditions.");
}
''' <summary>
''' Uses AndCondition to retrieve elements that match both of two conditions.
''' </summary>
''' <param name="elementMainWindow">An application window element.</param>
Public Sub AndConditionExample(ByVal elementMainWindow As AutomationElement)
If elementMainWindow Is Nothing Then
Throw New ArgumentException()
End If
Dim conditionEnabledButtons As New AndCondition(New PropertyCondition(AutomationElement.IsEnabledProperty, True), New PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Button))
Dim enabledButtons As AutomationElementCollection = elementMainWindow.FindAll(TreeScope.Subtree, conditionEnabledButtons)
Console.WriteLine("Enabled buttons:")
Dim autoElement As AutomationElement
For Each autoElement In enabledButtons
Console.WriteLine(autoElement.Current.Name)
Next autoElement
' Example of getting the conditions from the AndCondition.
Dim conditions As Condition() = conditionEnabledButtons.GetConditions()
Console.WriteLine("AndCondition has " & conditions.GetLength(0) & " subconditions.")
End Sub