C# 我可以从另一个进程模拟一个进程形式的按钮按下吗?

发布于 2024-10-07 11:11:21 字数 93 浏览 2 评论 0 原文

例如,我有一个带有按钮的 WinForm。是否可以从另一个进程按下此按钮?我想为 Cucumber 测试框架制作类似 Webrat 虚拟浏览器的东西,但适用于桌面应用程序。

For example I got a WinForm with a buttons on it. Is it possible to press this button from another process? I want to make something like Webrat virtual browser for Cucumber testing framework but for desktop applications.

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

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

发布评论

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

评论(2

空城仅有旧梦在 2024-10-14 11:11:21

您想看看 Microsoft 推出的全新框架:UI Automation以及此处

这可以很好地执行 WPF,但也适用于 WinForm。

You wanna have a look at the pretty new framework by Microsoft: UI Automationand here.

This can do WPF very well but works with WinForm as well.

双手揣兜 2024-10-14 11:11:21

由于所有 WinForms 控件都是 Win32 控件的包装器,因此您可以使用 Spy++ 工具通过文本属性和其他标志获取底层控件(按钮、文本框等)的非托管句柄,然后使用本机 win32 调用将自定义事件发送到此控件例如 MouseClick、MouseMove 等。考虑 http://pinvoke.net 有关 C# 中 P/Invoke 技术的更精确信息。

Due to all WinForms controls are wrapper around Win32 controls, you can use Spy++ tool for fetching unmanaged handle of underlied controls (buttons, textboxes etc) via text properties and other signs, and next, use native win32 calls to send custom events to this controls like MouseClick, MouseMove, etc. Consider http://pinvoke.net to more precise info about P/Invoke technique in C#.

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