标签: python tkinter
我在Linux / CentOS上。我有多个桌面。 当我启动此代码,同时我更改桌面时,窗口将在当前桌面中打开,而不是在原始桌面中打开(从中启动代码)。有没有办法告诉Tk留在已经启动它的桌面上?
from Tkinter import * import time time.sleep(5);Tk()
答案 0 :(得分:0)
不直接..但您可以指定按像素值放置窗口的位置。 请参阅以下答案
How to specify where a Tkinter window opens?
How to center a window on the screen in Tkinter?