mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
11 lines
191 B
C++
11 lines
191 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
DataPusher p;
|
|
TopWindow win;
|
|
p <<= AttrText("123").Center();
|
|
p.SetDisplay(StdRightDisplay());
|
|
win.Add(p.SizePos());
|
|
win.Run();
|
|
}
|