mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
15 lines
230 B
C++
15 lines
230 B
C++
#include "StatusBarTest.h"
|
|
|
|
StatusBarTest::StatusBarTest()
|
|
{
|
|
Title("StatusBar Test Application");
|
|
Icon(IconImages::Logo());
|
|
AddFrame(m_sb);
|
|
//Zoomable();
|
|
Maximize();
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
StatusBarTest().Run();
|
|
}
|