]>
Commit | Line | Data |
---|---|---|
be05b434 RD |
1 | import wx |
2 | ||
3 | class ChoiceFrame(wx.Frame): | |
4 | def __init__(self): | |
5 | wx.Frame.__init__(self, None, -1, 'Choice Example', | |
6 | size=(250, 200)) | |
7 | panel = wx.Panel(self, -1) | |
8 | sampleList = ['zero', 'one', 'two', 'three', 'four', 'five', | |
9 | 'six', 'seven', 'eight'] | |
10 | wx.StaticText(panel, -1, "Select one:", (15, 20)) | |
11 | wx.Choice(panel, -1, (85, 18), choices=sampleList) | |
12 | ||
13 | if __name__ == '__main__': | |
14 | app = wx.PySimpleApp() | |
15 | ChoiceFrame().Show() | |
16 | app.MainLoop() |