-
Notifications
You must be signed in to change notification settings - Fork 71
wx Control Overview
Chris Van Vranken edited this page Jul 20, 2014
·
8 revisions
Overview of Available Classes - Windows,Layouts,Controls, etc.
staticText, readonly text, can be changed programmatically, but not by the user.
staticText ← staticText f []
input1 ← entry f []
cmb ← comboBox f [items := ["item1","item2"]]
StyledTextCtrl, A MultiLine texbox with Highlighting, Code Completion, etc. (useful for building IDEs)
styledTxt ← styledTextCtrl f []
conversion of widgets to layouts
widget staticText
widget input1
widget cmb
widget styledTxt
label layout, create an immutable label for display
label "myLabeltext"