ultimatepp/reference/FullScreen/main.cpp
mdelfede d2b54f7989 changed svn layout
git-svn-id: svn://ultimatepp.org/upp/trunk@281 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-06-07 22:31:27 +00:00

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();
}