An editable listbox is composite control that lets the user easily enter, delete and reorder a list of strings.
This class supports the following styles:
wx.adv.EL_ALLOW_NEW
: Allows the user to enter new strings.wx.adv.EL_ALLOW_EDIT
: Allows the user to edit existing strings.wx.adv.EL_ALLOW_DELETE
: Allows the user to delete existing strings.wx.adv.EL_NO_REORDER
: Does not allow the user to reorder the strings.wx.adv.EL_DEFAULT_STYLE
: Default style: EL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE.The control uses a wx.ListCtrl internally and emit its events.
See also
__init__ |
Default constructor. |
Create |
Creates the editable listbox for two-step construction. |
GetStrings |
Returns a list of the current contents of the control. |
SetStrings |
Replaces current contents with given strings. |
wx.adv.
EditableListBox
(Panel)¶Possible constructors:
EditableListBox()
EditableListBox(parent, id=ID_ANY, label="", pos=DefaultPosition,
size=DefaultSize, style=EL_DEFAULT_STYLE, name=EditableListBoxNameStr)
An editable listbox is composite control that lets the user easily enter, delete and reorder a list of strings.
__init__
(self, *args, **kw)¶__init__ (self)
Default constructor.
__init__ (self, parent, id=ID_ANY, label=””, pos=DefaultPosition, size=DefaultSize, style=EL_DEFAULT_STYLE, name=EditableListBoxNameStr)
Constructor, creating and showing a list box.
Parameters: |
|
---|
See also
Create
(self, parent, id=ID_ANY, label="", pos=DefaultPosition, size=DefaultSize, style=EL_DEFAULT_STYLE, name=EditableListBoxNameStr)¶Creates the editable listbox for two-step construction.
See wx.adv.EditableListBox for further details.
Parameters: | |
---|---|
Return type: | bool |
GetStrings
(self)¶Returns a list of the current contents of the control.
Return type: | list of strings |
---|
SetStrings
(self, strings)¶Replaces current contents with given strings.
Parameters: | strings (list of strings) – |
---|
Strings
¶See GetStrings
and SetStrings