mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
13 lines
210 B
C++
13 lines
210 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow win;
|
|
Button b;
|
|
b.SetLabel("CLOSE");
|
|
b <<= win.Breaker();
|
|
win.Add(b.LeftPos(10, 100).TopPos(10, 30));
|
|
win.FullScreen().Run();
|
|
}
|