Example #1
0
 def __init__(self, parent, **kwargs):
     """!
     A constructor for the class
     @param self The pointer for the object
     @param parent The parent object for the frame
     @param **kwargs Other arguments as accepted by ttk.Combobox
     """
     #Initialise the inherited class
     Combobox.__init__(self, parent, **kwargs)
Example #2
0
 def __init__(self, master, **kwargs):
     Combobox.__init__(self, master, **kwargs)
Example #3
0
 def __init__(self, master, **kwargs):
     Combobox.__init__(self, master, **kwargs)
Example #4
0
 def __init__(self, master, proxy):
     self.proxy = proxy
     self.var_selection = StringVar()
     self.param = None
     Combobox.__init__(self, master, textvariable=self.var_selection, width=30)
     self.sync()