Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用此代码在 Win10 下的 Python 2.7 中打开 Dpi Awareness
import ctypes import platform ctypes.windll.shcore.SetProcessDpiAwareness(True)
但
ctypes.windll.shcore.SetProcessDpiAwareness(False)
不会关闭它。我正在寻找任何建议。
文档SetProcessDpiAwareness明确指出:
SetProcessDpiAwareness
一旦为应用设置了 API 感知,以后对该 API 的任何调用都将失败。
你所要求的根本是不可能的。