Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.ComboCtrl.SetTextCtrlStyle.1.py
2016-05-18 16:38:18 -07:00

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, "")