我正在尝试使用UI Automation与上下文菜单进行交互。基本上,我想:
AutomationElement
SendKeys.SendWait
发送SHIFT+F10
我看到的是AutomationElement.FindAll(TreeScope.Descendants, Condition.TrueCondition)
似乎没有反映弹出上下文菜单,即使UISpy看到它。
非常感谢任何帮助。
以下是我在LINQPad中运行的示例应用程序:
void Main()
{
var notepad = FindNotepad();
Console.WriteLine("Pre-Context: {0}", Descendants(notepad).Count);
TypeInto(notepad, "(+{F10})");
Thread.Sleep(1000);
Console.WriteLine("With Context: {0}", Descendants(notepad).Count);
TypeInto(notepad, "{ESC}");
Console.WriteLine("Post-Context: {0}", Descendants(notepad).Count);
}
AutomationElement FindNotepad(string title = "Untitled - Notepad")
{
var notepadName = new PropertyCondition(AutomationElement.NameProperty, title);
return AutomationElement.RootElement.FindFirst(TreeScope.Children, notepadName);
}
void TypeInto(AutomationElement element, string keys)
{
element.SetFocus();
SendKeys.SendWait(keys);
}
AutomationElementCollection Descendants(AutomationElement element)
{
return element.FindAll(TreeScope.Subtree, Condition.TrueCondition);
}