mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
- Add support for `wx.adv.OwnerDrawnComboBox` and `wx.ComboCtrl` in the documentation building process. Add the appropriate samples as well (and wonder why the sample in `wx.ComboCtrl` doesn't get properly highlighted...). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
8 lines
229 B
Python
8 lines
229 B
Python
|
|
comboCtrl = wx.ComboCtrl()
|
|
|
|
# Let's make the text right-aligned
|
|
comboCtrl.SetTextCtrlStyle(wx.TE_RIGHT)
|
|
|
|
comboCtrl.Create(parent, wx.ID_ANY, "")
|