def new_about_window(self): win = tk.AppWindow(self) win.withdraw() win.title("About Topographica") text = Label(win,text=topo.about(display=False),justify=LEFT) text.pack(side=LEFT) win.deiconify()
def new_window(self): win = tk.AppWindow(self,status=True) return win
def new_window(self): win = tk.AppWindow(self,status=True) #self.consume(win) return win