我浏览过其他几篇关于类似问题的帖子,似乎都指向了这段代码。因为,我正在创建一个桌面覆盖,我设置了一个简短的程序来创建一个顶部窗口,并希望能隔离问题,但是,尽管我努力了,但我无法弄清楚为什么这个看似被广泛接受的解决方案对我来说失败了,或者是什么我可能会失踪。
我已经验证所检索的句柄引用了正确的窗口,修剪掉了不必要的功能,并通过个人试验和错误探索了设置窗口样式的其他变体,并模仿了通过 programcreek.com 找到的一些示例。
from tkinter import *
from PIL import Image, ImageTk
from win32gui import GetForegroundWindow, ShowWindow, FindWindow,
SetWindowLong, GetWindowLong
from win32con import SW_MINIMIZE, WS_EX_LAYERED, WS_EX_TRANSPARENT, GWL_EXSTYLE
def setClickthrough(root, window="Applepie"):
hwnd = FindWindow(None, window)
styles = GetWindowLong(hwnd, GWL_EXSTYLE)
styles |= WS_EX_LAYERED | WS_EX_TRANSPARENT
print(SetWindowLong(hwnd, GWL_EXSTYLE, styles))
# Dimensions
width = 1920 #self.winfo_screenwidth()
height = 1080 #self.winfo_screenheight()
root = Tk()
root.geometry('%dx%d' % (width, height))
root.title("Applepie")
root.attributes('-transparentcolor', 'white', '-topmost', 1)
root.config(bg='white')
root.attributes("-alpha", 0.25)
root.wm_attributes("-topmost", 1)
root.bg = Canvas(root, width=width, height=height, bg='white')
setClickthrough(root)
frame = ImageTk.PhotoImage(file="Resources/Test/Test-0000.gif")
root.bg.create_image(1920/2, 1080/2, image=frame)
root.bg.pack()
root.mainloop()
使用 acw1668 提供的解决方案成功地使 TkInter 窗口透明且可点击:
root.attributes('-transparentcolor', 'white', '-topmost', 1)
root.config(bg='white')
root.bg = Canvas(root, width=width, height=height, bg='white')
在画布中创建图像时问题仍然存在。还需要能够点击其他图像:
frame = ImageTk.PhotoImage(file="Resources/Test/Test-0000.gif")
root.bg.create_image(1920/2, 1080/2, image=frame)