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.
私はラズベリー pi 2 を所有しており、Python の学習を開始します。私は非常に基本的なことをしたいと思います: 通知システムのような omxplayer ウィンドウの上に私の Python プログラムのウィンドウ。
TKinter を使用して「常に手前に」ウィンドウを作成できましたが、omxplayer を起動すると、ウィンドウが手前に表示されなくなります。
助けていただければ幸いです。
ありがとう
私の解決策は、ラズベリー pi で hello_pi の例から Hello_font を使用することです。
試してください:
from Tkinter import * root = Tk() root.wm_attributes('-topmost', 1)
ソース: http://tkinter.unpythonic.net/wiki/always_on_top