mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-07 13:34:08 +08:00
10 lines
545 B
C#
10 lines
545 B
C#
// 如果指定了过滤条件,创建一个组合条件
|
|
if (!string.IsNullOrEmpty(filter))
|
|
{
|
|
searchCondition = new OrCondition(
|
|
new PropertyCondition(AutomationElement.NameProperty, filter, PropertyConditionFlags.IgnoreCase),
|
|
new PropertyCondition(AutomationElement.ClassNameProperty, filter, PropertyConditionFlags.IgnoreCase),
|
|
new PropertyCondition(AutomationElement.AutomationIdProperty, filter, PropertyConditionFlags.IgnoreCase)
|
|
);
|
|
}
|