Skip to content

wx Control Overview

Chris Van Vranken edited this page Jul 20, 2014 · 8 revisions

Overview of Available Classes - Windows,Layouts,Controls, etc.

Widgets

staticText, readonly text, can be changed programmatically, but not by the user.

staticText      staticText f []

TextCtrl

input1      entry f []

ComboBox

cmb   comboBox f [items := ["item1","item2"]]

StyledTextCtrl, A MultiLine texbox with Highlighting, Code Completion, etc. (useful for building IDEs)

styledTxt   styledTextCtrl f []

Layouts

conversion of widgets to layouts

widget staticText
widget input1
widget cmb
widget styledTxt

label layout, create an immutable label for display

label "myLabeltext"
Clone this wiki locally