Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 C++ 制作了一个程序,它使用以下方法模拟对非活动窗口的点击:
PostMessage (z, WM_LBUTTONDOWN, 0,MAKELONG(t.left+x,t.top+y));
但是每当它点击它时,它就会激活窗口并且窗口移动到顶部。
有没有一种方法可以使窗口保持非活动状态或以其他方式单击它?
我曾经SetWindowPos(z , HWND_BOTTOM,....)使该窗口位于 z 顺序列表的底部,但它仍然会激活。
SetWindowPos(z , HWND_BOTTOM,....)
编辑:窗口是游戏机
尝试从PostMessageto切换SendInput,看看是否得到相同的效果。
PostMessage
SendInput