2

我正在尝试使用 WPF UI 自动化工作而不使用虚假的 thread.sleep 语句。我想做的是有一个函数 GetElementById 不断轮询,直到控件可用(或发生超时)。问题是它似乎缓存了我的父元素的子控件。是否可以刷新儿童?或者有人有替代方法吗?

public AutomationElement GetElementById(string id, int timeout)
{
    if (timeout <= 1000) throw new ArgumentException("Timeout must be greater than 1000", "timeout");

    AutomationElement element = null;

    int timer = 0;
    const int delay = 100;

    do
    {       
        element = MainWindow.FindFirst(TreeScope.Descendants, new PropertyCondition(AutomationElement.AutomationIdProperty, id));                
        Thread.Sleep(delay);
        timer += delay;
    } while (element == null && timer < timeout);

    if (element == null) throw new InvalidOperationException("Unable to find element with id: " + id);

    return element;
}
4

2 回答 2

0

System.Windows.Forms.Application 命名空间中可用的 DoEvents 函数用于使 UI 能够在长时间运行的进程发生时进行更新。它不是 WPF 命名空间的成员。您可以通过像本文中那样自己实现它或导入 System.Windows.Forms 命名空间并调用 Application.DoEvents 来使用类似的东西。这将允许您在进行轮询时继续进行其他处理。这是一个需要谨慎使用的功能。

于 2010-11-05T13:15:39.270 回答
0

如果有比明智地使用 Thread.Sleep 更好的方法,我还没有找到。

UIAutomation 确实提供了Events,我想您可以(以您的情况为例)侦听选择 TabItem 时发生的事件,然后才能继续按 Id 查找项目。但我怀疑这种模式会严重破坏代码的整体可读性。

于 2010-11-05T17:07:55.287 回答