0

在 FLAUI 中,试图获取对以某些字母开头或包含某些字母的子元素的引用。示例以“DOC”开头或包含“DOC”我想要做的是我正在打开一些办公文件,如 doc、xls、ppt。并希望在他打开屏幕时附加文件。

      foreach (var file in listOfFiles)
        {
            if (file.Name.Contains("DOC") || file.Name.Contains("PPT") || file.Name.Contains("XLS") || file.Name.Contains("TXT"))
            {                
                file.AsButton().Invoke();
                
                var window = new UIA3Automation();
                desktopWindow = window.GetDesktop();
                desktopWindow = WaitForElement(() => desktopWindow.FindFirstChild(cr => cr.ByName("// Here want to put name that start with ... or contains ...")));
                var app = FlaUI.Core.Application.Attach(desktopWindow.Properties.ProcessId);
                var application = app.GetMainWindow(new UIA3Automation());
                CloseingProcess(application.Name);
                

图像

4

1 回答 1

1

如果我理解正确,您想检查一个已经打开的文件是否具有您需要的扩展名。正确的?

为此,您必须抓住窗口,FlaUI然后您可以检查类.Title上的属性Window,如下所示:

var automation = new UIA3Automation();
var app = FlaUI.Core.Application.Attach(application.Process.Id); //attach or start application here
var window = app.GetMainWindow(automation); //Get hold
window.Title //Use the .Title or .TitleBar property to check for your extension.
于 2021-12-13T20:50:49.653 回答