WinBinder Manual/StatusBar
From wiki.swiftlytilting.com
The status bar' is an optional horizontal bar that appears on the bottom of a parent window. To create a status bar, use the function wb_create_control() passing StatusBar as the parameter cclass.
If the parent of the status bar is a resizable window, the status bar is automatically is given a sizing grip. When the parent window is resized, its width is adjusted automatically.
[edit]
Example
$statusbar = wb_create_control($mainwin, StatusBar, "Hello, I'm the status bar.");
[edit]

