mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-10 13:57:08 +01:00
8 lines
222 B
Python
8 lines
222 B
Python
|
|
comboCtrl = wx.ComboCtrl()
|
|
|
|
# Let's make the text right-aligned
|
|
comboCtrl.SetTextCtrlStyle(wx.TE_RIGHT)
|
|
|
|
comboCtrl.Create(parent, wx.ID_ANY, "")
|