wx.MultiChoiceDialog¶
This class represents a dialog that shows a list of strings, and allows the user to select one or more.
Window Styles¶
This class supports the following styles:
wx.OK
: Show anwx.OK
button.wx.CANCEL
: Show a Cancel button.wx.CENTRE
: Centre the message.
Class Hierarchy¶
Control Appearance¶
Methods Summary¶
Constructor taking an array of String choices. |
|
Returns array with indexes of selected items. |
|
Sets selected items from the array of selected items’ indexes. |
|
Shows the dialog, returning either |
Properties Summary¶
See |
Class API¶
- class wx.MultiChoiceDialog(Dialog)¶
Possible constructors:
MultiChoiceDialog(parent, message, caption, n, choices, style=CHOICEDLG_STYLE, pos=DefaultPosition) -> None MultiChoiceDialog(parent, message, caption, choices, style=CHOICEDLG_STYLE, pos=DefaultPosition) -> None
This class represents a dialog that shows a list of strings, and allows the user to select one or more.
Methods¶
- __init__(self, *args, **kw)¶
-
__init__ (self, parent, message, caption, n, choices, style=CHOICEDLG_STYLE, pos=DefaultPosition)
Constructor taking an array of String choices.
- Parameters:
parent (wx.Window) – Parent window.
message (string) – Message to show on the dialog.
caption (string) – The dialog caption.
n (int) – The number of choices.
choices (string) – An array of strings, or a string list, containing the choices.
style (long) – A dialog style (bitlist) containing flags chosen from standard dialog styles and the ones listed in the class documentation. The default value is equivalent to
wx.DEFAULT_DIALOG_STYLE
|wx.RESIZE_BORDER
|wx.OK
|wx.CANCEL
|wx.CENTRE
.pos (wx.Point) – Dialog position.
- Return type:
None
__init__ (self, parent, message, caption, choices, style=CHOICEDLG_STYLE, pos=DefaultPosition)
Constructor taking an array of String choices.
- Parameters:
parent (wx.Window) – Parent window.
message (string) – Message to show on the dialog.
caption (string) – The dialog caption.
choices (list of strings) – An array of strings, or a string list, containing the choices.
style (long) – A dialog style (bitlist) containing flags chosen from standard dialog styles and the ones listed in the class documentation. The default value is equivalent to
wx.DEFAULT_DIALOG_STYLE
|wx.RESIZE_BORDER
|wx.OK
|wx.CANCEL
|wx.CENTRE
.pos (wx.Point) – Dialog position.
- Return type:
None
- static GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL)¶
- Parameters:
variant (WindowVariant)
- Return type:
- GetSelections(self)¶
Returns array with indexes of selected items.
- Return type:
List[int]
- SetSelections(self, selections)¶
Sets selected items from the array of selected items’ indexes.
- Parameters:
selections (list of integers)
- Return type:
None
- ShowModal(self)¶
Shows the dialog, returning either
wx.ID_OK
orwx.ID_CANCEL
.- Return type:
int
Properties¶
- Selections¶
See
GetSelections
andSetSelections