描述
我试图能够使用 UI 自动化与上下文菜单进行交互。基本上,我正在尝试:
- 把重点放在一个
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);
}