C# 等待用户与 White 的交互

发布于 2024-12-08 02:47:56 字数 238 浏览 0 评论 0原文

我正在考虑使用 White 来实现我的简单 windows ui 自动化。首先,我使用 System.Diagnostics.Process 从我的应用程序运行外部应用程序。当外部应用程序打开时,将出现一个对话框,用户在其中插入一些文本,然后单击“确定”按钮。我需要的是等到对话框关闭或检测到单击“确定”按钮。我所需要的只是一些指示,表明用户已完成该对话框,我可以继续执行我的自动化任务。

有什么办法可以用白色来做到这一点吗?任何其他选择也欢迎!

Im thinking of using White for my simple windos ui automation. First i run external application from my application using System.Diagnostics.Process. When the external application opens is going to give me a dialog where the user has insert some text and click OK button. What i need is to wait until the dialog is closed or detect the OK button is clicked. All i need is some indication that user is finished with that dialog and i can go on with my automation tasks.

Is there any way doing this with White? Any other options also welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

表情可笑 2024-12-15 02:47:56

您可以在该对话框上设置标题,并安排计时器在主窗口的子窗口中查找子窗口。如果没有找到,您可以继续。 应该可以工作。

You can setup a title on that dialog, and schedule a timer to find a child window among Main window's children. If it's not found, you can proceed. Should work.

守不住的情 2024-12-15 02:47:56

另一种方式:

using System.Windows.Automation;

Automation.AddAutomationEventHandler(
            WindowPattern.WindowClosedEvent,
            AutomationElement.RootElement, // set correct value here
            TreeScope.Children,            // check the value is correct
            (sender, e) =>
            {
                var element = sender as AutomationElement;
                if (element.Current.Name != "Form Title")
                    return;

                Automation.RemoveAllEventHandlers(); // remove event handler

                // Your code here
                // CodeToRunAfterWindowClosed();
            });

Another way:

using System.Windows.Automation;

Automation.AddAutomationEventHandler(
            WindowPattern.WindowClosedEvent,
            AutomationElement.RootElement, // set correct value here
            TreeScope.Children,            // check the value is correct
            (sender, e) =>
            {
                var element = sender as AutomationElement;
                if (element.Current.Name != "Form Title")
                    return;

                Automation.RemoveAllEventHandlers(); // remove event handler

                // Your code here
                // CodeToRunAfterWindowClosed();
            });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文