📌  相关文章
📜  使 tkinter 窗口看起来不那么模糊 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:17.733000             🧑  作者: Mango

代码示例1
'''
On some windows displays, tkinter windows will look blurried.
Add the folloing code at the start of your code to fix it
'''

from ctypes import windll #You may want to read up the docs
windll.shcore.SetProcessDpiAwareness(True) #Set high dpi to True