1

我正在尝试从另一个程序的 DataGridBox 中提取所有值。为此,我正在使用 FlaUi。我做了一个代码,做我想要的。但是,它非常缓慢。有没有更快的方法来使用 FlaUi 从另一个程序的 DataGridView 中提取所有值?

我的代码:

var desktop = automation.GetDesktop();
                var window = desktop.FindFirstDescendant(cf => cf.ByName("History:  NEWLIFE")).AsWindow();
                var table = window.FindFirstDescendant(cf => cf.ByName("DataGridView")).AsDataGridView();

                int rowscount = (table.FindAllChildren(cf => cf.ByProcessId(30572)).Length) - 2;
                // Remove the last row if we have the "add" row

                for (int i = 0; i < rowscount; i++)
                {
                    string string1 = "Row " + i;
                    string string2 = "Symbol Row " + i;

                    var RowX = table.FindFirstDescendant(cf => cf.ByName(string1));
                    var SymbolRowX = RowX.FindFirstDescendant(cf => cf.ByName(string2));
                    SCAN.Add("" + SymbolRowX.Patterns.LegacyIAccessible.Pattern.Value);                    
                }

                var message = string.Join(Environment.NewLine, SCAN);
                MessageBox.Show(message);

先感谢您

4

1 回答 1

1

搜索后代非常慢,因为它会遍历树中的所有对象,直到找到所需的控件(或者没有控件剩余)。使用网格模式查找所需的单元格或一次获取所有行并循环遍历它们可能会快得多。

或者,您可以尝试缓存,因为 UIA 使用通常很慢的进程间调用。所以每个 Find 方法或值属性都会进行这样的调用。如果您有一个大网格,那么总结起来可能会很糟糕。对于这种情况,使用 UIA 缓存可能是有意义的。为此,您将在缓存请求中一次性获得所需的一切(表的所有后代和 LegacyIAccessible 模式),然后使用 CachedChildren 等循环遍历代码中的这些元素。可以在https://github.com/FlaUI/FlaUI/wiki/Caching的 FlaUI wiki 中找到一个简单的示例:

var grid = <FindGrid>.AsGrid();
var cacheRequest = new CacheRequest();
cacheRequest.TreeScope = TreeScope.Descendants;
cacheRequest.Add(Automation.PropertyLibrary.Element.Name);
using (cacheRequest.Activate())
{
    var rows = _grid.Rows;
    foreach (var row in rows)
    {
        foreach (var cell in row.CachedChildren)
        {
            Console.WriteLine(cell.Name);
        }
    }
}
于 2020-01-07T12:12:03.887 回答