1

描述

我试图能够使用 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);
}
4

1 回答 1

0

在 Shift-F10 上打开的上下文菜单实际上是根元素(桌面)的子元素,因此如果您使用Descendants(AutomationElement.RootElement).Count而不是,Descendants(notepad).Count您会看到差异。例如

Pre-Context: 2019
With Context: 2036
Post-Context: 2019
于 2015-09-11T04:54:51.323 回答