module win32gui has no attribute GetDesktopwindow
时间: 2023-08-11 21:03:15 浏览: 154
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
请注意,方法名是 `GetDesktopWindow`,而不是 `GetDesktopwindow`。需要将 `window` 和 `Window` 都改为大写。
正确的代码应该是这样的:
```
import win32gui
hwnd = win32gui.GetDesktopWindow()
```
请注意 `GetDesktopWindow` 方法返回的是桌面窗口的句柄(一个整数),而不是窗口本身。如果你想要获取桌面窗口的尺寸等信息,可以使用 `win32gui.GetWindowRect(hwnd)` 方法。
阅读全文