2
我有一個頂層窗口,它始終出現在根窗口下面,這非常煩人。任何想法如何確保頂層在函數被調用時獲得焦點?Python中的摺疊窗口不斷出現在根窗口下
def setup(self):
self.setup_step = 1
setup_window = Toplevel(self)
setup_window.config(bg = "#000000", height = "600", width = "850")
setup_window.title("RoastMaster Setup")
setup_window.geometry("800x600")
使其瞬變正是我所需要的。非常感謝! – 2011-04-08 13:38:31