在Python中,可以使用win32gui
模块来获取当前窗口的句柄。下面是一个示例代码:
import win32gui
def get_current_window_handle():
return win32gui.GetForegroundWindow()
# 获取当前窗口句柄
current_window_handle = get_current_window_handle()
print("当前窗口句柄:", current_window_handle)
在上面的示例中,get_current_window_handle()
函数用于获取当前前台窗口的句柄,然后将其打印出来。你可以根据需要在程序中使用这个句柄进行其他操作。请确保已安装pywin32
模块,以便使用win32gui
模块。