gpt4 book ai didi

python - 获取每个窗口的 HWND?

转载 作者:太空狗 更新时间:2023-10-29 21:14:11 24 4
gpt4 key购买 nike

我正在开发一个 python 应用程序,我想获取每个打开的窗口的 HWND。我需要窗口的名称和 HWND 来过滤列表以管理一些特定的窗口,移动它们并调整它们的大小。

我试着自己做,但我没有得到正确的代码。我试过这个 code但我只得到每个窗口的标题(这很好),但我也需要 HWND

import ctypes
import win32gui
EnumWindows = ctypes.windll.user32.EnumWindows
EnumWindowsProc = ctypes.WINFUNCTYPE(ctypes.c_bool, ctypes.POINTER(ctypes.c_int), ctypes.POINTER(ctypes.c_int))
GetWindowText = ctypes.windll.user32.GetWindowTextW
GetWindowTextLength = ctypes.windll.user32.GetWindowTextLengthW
IsWindowVisible = ctypes.windll.user32.IsWindowVisible

titles = []
def foreach_window(hwnd, lParam):
if IsWindowVisible(hwnd):
length = GetWindowTextLength(hwnd)
buff = ctypes.create_unicode_buffer(length + 1)
GetWindowText(hwnd, buff, length + 1)
titles.append((hwnd, buff.value))
return True
EnumWindows(EnumWindowsProc(foreach_window), 0)

for i in range(len(titles)):
print(titles)[i]

win32gui.MoveWindow((titles)[5][0], 0, 0, 760, 500, True)

这里有错误:

win32gui.MoveWindow((titles)[5][0], 0, 0, 760, 500, True)
TypeError: The object is not a PyHANDLE object

最佳答案

你混淆了 ctypeswin32gui
你得到的hwnd是通过ctypes获得的,是一个LP_c_long对象。这就是 win32gui.MoveWindow 不接受它的原因。你应该把它传递给

ctypes.windll.user32.MoveWindow(titles[5][0], 0, 0, 760, 500, True)

如果你想使用win32gui.MoveWindow,你可以直接使用python函数作为回调。
例如,

import win32gui

def enumHandler(hwnd, lParam):
if win32gui.IsWindowVisible(hwnd):
if 'Stack Overflow' in win32gui.GetWindowText(hwnd):
win32gui.MoveWindow(hwnd, 0, 0, 760, 500, True)

win32gui.EnumWindows(enumHandler, None)

关于python - 获取每个窗口的 HWND?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14653168/

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