11.wxWidgets – Graphics

January 24, 2022 amit 0

OVERVIEW We now look at how to do 2d graphics in wxWidgets. Displaying graphics is different from displaying text – you need something called a […]

10.wxWidgets – Drag & Drop

January 15, 2022 amit 0

OVERVIEW wxWidgets provides functionality to do drag and drop between its various UI widgets. One widget is designated as the source and another widget is […]

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 […]