gpt4 book ai didi

c# - sendmessage API 中的按钮单击

转载 作者:行者123 更新时间:2023-12-02 02:43:08 25 4
gpt4 key购买 nike

如何在 C# 中模拟 sendmessage API 中的按钮单击?

最佳答案

C 代码:

#include <Windows.h>
//...
SendMessage(hWndButton, BM_CLICK, 0, 0);

C# 代码:

[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);

...
Button myButton = ...;
const int BM_CLICK = 0x00F5;
SendMessage(myButton.Handle, BM_CLICK, IntPtr.Zero, IntPtr.Zero);

但请注意,在 C# 中,您可以轻松地执行以下操作:

myButton.PerformClick();

关于c# - sendmessage API 中的按钮单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4665463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com