9c. wxWidgets – wxScrolledWindow

January 13, 2022 amit 0

OVERVIEW wxWidgets provides a class called wxScrolled<T> which is a template for specialized scrolling classes. It has two implementations of this class: wxScrolledCanvas wxScrolledWindow In […]

9b.wxWidgets – wxNoteBook

January 13, 2022 amit 0

OVERVIEW A wxNotebook is basically a tab control which lets you group controls together in tab sections. In the sample code below, we create a […]

8f.wxWidgets – wxSlider

January 6, 2022 amit 0

OVERVIEW wxSliders allow the user to control a range of values , which represent the starting and ending point of the slider. Every time the […]

8d.wxWidgets – wxStaticLine

January 6, 2022 amit 0

OVERVIEW wxStaticLine lets you draw horizontal or vertical lines in a window. The default style is horizontal unless your specify a wxLI_VERTICAL style. For both […]

8c.wxWidgets – wxToggleButton

January 6, 2022 amit 0

OVERVIEW wxToggleButtons are like checkboxes in that they represent two states- true or false. Except here, they generate a command event every time since they […]