SLIDE 1
1
1
Aaron Stevens
17 April 2009
CS108 Lecture 31: Graphical User Interface: Multiple Window GUIs
2
Overview/Questions Creating a GUI application which uses multiple - - PDF document
CS108 Lecture 31: Graphical User Interface: Multiple Window GUIs Aaron Stevens 17 April 2009 1 Overview/Questions Creating a GUI application which uses multiple windows working together. Developing a parent/child relationship
1
2
3
4
5
6
7
8
class Counter(model.Background): def on_initialize(self, event): self.displayWindow = model.childWindow(self, display.Display)
9
10
11
12
13
14