AutoIt 与 wpf

发布于 2024-12-11 06:11:59 字数 528 浏览 0 评论 0原文

我的 wpf 应用程序有以下示例代码。 我需要用字符串填写表单的文本字段。

    Run('AutoItWpfTesting.exe')
    WinWaitActive("Window1", "")

    $hHwnd = WinGetHandle("Window1")
    MsgBox(0, "Message", $hHwnd)

   $returnVal1=ControlGetHandle ( "$hHwnd", "", "[NAME:txtVersion]")

   $returnVal2=ControlSend($hHwnd,"","[NAME:txtVersion]","blahblah")

   MsgBox(0, "Message", $returnVal2)

对于 $returnVal2 返回 0,对于 $returnValue1 返回空字符串。 不过,这对于我的示例 winform 应用程序来说效果很好。

任何关于此行为的线索......以及任何可用于获取精确文本框以自动填充 wpfa 应用程序数据的调整。

I have below sample code for my wpf app.
I need to fill in text fields of form with strings.

    Run('AutoItWpfTesting.exe')
    WinWaitActive("Window1", "")

    $hHwnd = WinGetHandle("Window1")
    MsgBox(0, "Message", $hHwnd)

   $returnVal1=ControlGetHandle ( "$hHwnd", "", "[NAME:txtVersion]")

   $returnVal2=ControlSend($hHwnd,"","[NAME:txtVersion]","blahblah")

   MsgBox(0, "Message", $returnVal2)

it returns 0 for $returnVal2 and Empty string for $returnValue1.
However this works fine for my sample winform application.

Any clues why this behaviour is..and Any tweaks available to get exact text-box to auto fill data for wpfa app.

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

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

发布评论

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

评论(1

穿透光 2024-12-18 06:11:59

WPF 应用程序不使用 Windows 控件和控件句柄。您可以使用 Spy++ 看到这一点。 Spy++ 的 WPF 替代方案

如果您想自动化 WPF 应用程序 <一个href="http://social.msdn.microsoft.com/Forums/en-US/windowsaccessibilityandautomation/thread/09153b49-1958-4543-be4f-4ac0fc9a39d1/" rel="nofollow noreferrer">您将需要另一个工具 或使用 UI 自动化 API 来构建一个。

WPF applications do not use Windows' controls and handles for the controls. You can see that by using Spy++. WPF Alternatives for Spy++

If you want to automate WPF applications you will need another tool or use the UI Automation API to build one.

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