温馨提示×

windows怎么获得当前窗口句柄

小亿
105
2023-12-01 16:37:00
栏目: 智能运维

要获得当前窗口的句柄,可以使用以下步骤:

  1. 引入user32库:在代码文件的开头添加以下代码:

    import ctypes
    from ctypes import wintypes
    
  2. 定义user32库中的函数和数据类型:

    # 定义函数类型
    EnumWindowsProc = ctypes.WINFUNCTYPE(wintypes.BOOL, wintypes.HWND, wintypes.LPARAM)
    
    # 定义函数
    user32 = ctypes.windll.user32
    user32.EnumWindows.restype = wintypes.BOOL
    user32.EnumWindows.argtypes = [EnumWindowsProc, wintypes.LPARAM]
    user32.GetWindowThreadProcessId.restype = wintypes.DWORD
    user32.GetWindowThreadProcessId.argtypes = [wintypes.HWND, ctypes.POINTER(wintypes.DWORD)]
    
  3. 定义一个回调函数来处理每个窗口:

    def enum_windows_callback(hwnd, lparam):
        current_process_id = ctypes.c_ulong()
        user32.GetWindowThreadProcessId(hwnd, ctypes.byref(current_process_id))
    
        # 这里可以根据需要添加一些条件判断
        # 比如判断窗口标题或窗口类名是否符合要求
    
        # 输出窗口句柄和进程ID
        print(f"窗口句柄: {hwnd}, 进程ID: {current_process_id.value}")
    
        return True
    
  4. 调用EnumWindows函数,将回调函数传递给它:

    user32.EnumWindows(EnumWindowsProc(enum_windows_callback), 0)
    

运行代码后,将会输出当前所有窗口的句柄和进程ID。根据需要,你可以在回调函数中添加一些条件判断,以便过滤出你想要的窗口。

0