Home | History | Annotate | Download | only in tools

Lines Matching refs:root

82     # The Tkinter root window object
83 self.root = None
162 self.root.title("Stats Viewer [updated %s]" % time.strftime("%H:%M:%S"))
166 self.root.after(UPDATE_INTERVAL_MS, lambda: self.UpdateCounters())
218 for child in self.root.children.values():
227 name = Tkinter.Label(self.root, width=50, anchor=Tkinter.W,
235 value = Tkinter.Label(self.root, width=15, anchor=Tkinter.W,
249 self.root.update()
252 """Create and display the root window."""
253 self.root = Tkinter.Tk()
256 self.root.resizable(width=False, height=False)
259 self.root.mainloop()