List of choices : Choice « wxPython « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » wxPython » Choice 
19.4.1.List of choices
List of choices
import wx

class ChoiceFrame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None, -1'Choice Example', size=(250200))
        panel = wx.Panel(self, -1)
        sampleList = ['0''1''2''3']
        wx.StaticText(panel, -1"Select one:"(1520))
        wx.Choice(panel, -1(8518), choices=sampleList)

app = wx.PySimpleApp()
ChoiceFrame().Show()
app.MainLoop()
19.4.Choice
19.4.1.List of choicesList of choices
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.