Multiple selection ComboBox

Is there a way to make ComboBox support multiple selection? I just found this topic, but obviously, more details on the way by wx.ComboCtrl is needed.
Could someone post some samples of this?

Thanks!

It is said in docs? that ComboBox is implemented mainly (only) under windows. I prefer using wxChoice has less functionality, bu it is implemented everywhere. wxCoice doesn’t have multiple selections. wxList does.

It is said in docs? that ComboBox is implemented mainly (only) under
windows. I prefer using wxChoice has less functionality, bu it is
implemented everywhere. wxCoice doesn't have multiple selections. wxList
does.

No, wxComboBox is implemented under all platforms.
The same is for wxChoice.

Thank you.

···

On Fri, Jul 22, 2016 at 12:33 PM, Michael Salin <mikesalin@gmail.com> wrote:

--
You received this message because you are subscribed to the Google Groups
"wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to wxpython-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Thanks to all. I just ended up switching to wx.ListBox, which works fine.

···

On Thursday, July 21, 2016 at 1:19:24 PM UTC-7, Changming wrote:

Is there a way to make ComboBox support multiple selection? I just found this topic, but obviously, more details on the way by wx.ComboCtrl is needed.
Could someone post some samples of this?

Thanks!