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.
我拥有一个树莓派 2,我开始学习 Python。我想做一些非常基本的事情:我的 Python 程序窗口位于 omxplayer 窗口之上,就像一个通知系统。
我已经能够使用 TKinter 制作一个“始终位于顶部”的窗口,但是当我启动 omxplayer 时,我的窗口不再位于顶部。
我会感谢一些帮助!
谢谢
我的解决方案是使用树莓派上 hello_pi 示例中的 Hello_font。
尝试:
from Tkinter import * root = Tk() root.wm_attributes('-topmost', 1)
资料来源:http ://tkinter.unpythonic.net/wiki/always_on_top