Create and display the root window.
(self)
| 258 | self.root.update() |
| 259 | |
| 260 | def OpenWindow(self): |
| 261 | """Create and display the root window.""" |
| 262 | self.root = Tkinter.Tk() |
| 263 | |
| 264 | # Tkinter is no good at resizing so we disable it |
| 265 | self.root.resizable(width=False, height=False) |
| 266 | self.RefreshCounters() |
| 267 | self.ScheduleUpdate() |
| 268 | self.root.mainloop() |
| 269 | |
| 270 | |
| 271 | class UiCounter(object): |
no test coverage detected