module 'win32gui' has no attribute 'cetwindowDc'
时间: 2023-06-22 15:35:29 浏览: 190
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
请注意,方法名是 `GetWindowDC`,而不是 `cetwindowDc`。需要将 `GetWindowDC` 的每个单词的首字母都改为大写。
正确的代码应该是这样的:
```
import win32gui
hwnd = win32gui.GetDesktopWindow()
hdc = win32gui.GetWindowDC(hwnd)
```
请注意 `GetWindowDC` 方法返回的是桌面窗口的设备上下文(Device Context,简称 DC),可以通过该 DC 对桌面窗口进行绘制等操作。使用完后,需要通过 `win32gui.ReleaseDC(hwnd, hdc)` 方法释放 DC。
阅读全文