mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
12 lines
165 B
C++
12 lines
165 B
C++
#include "Test.h"
|
|
|
|
Test::Test()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
text <<= "[R This should be [g Standard size";
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Test().Run();
|
|
}
|