AutomationElement / Context菜单

时间:2014-02-19 18:59:13

标签: c# ui-automation microsoft-ui-automation automationelement

描述

我正在尝试使用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);
}

0 个答案:

没有答案