Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/ComboCtrl.SetTextCtrlStyle.1.py
Andrea Gavana fc5b4a31ca Phoenix:
- 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
2012-06-06 19:36:04 +00:00

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